-
-
Notifications
You must be signed in to change notification settings - Fork 278
/
Gruntfile.js
168 lines (161 loc) · 5.21 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* global module */
module.exports = function (grunt) {
// middleware for browserSync
var bodyParser = require('body-parser');
var middleware = [
function (req, res, next) {
var proxypage = require('proxypage');
var proxyRe = /\/proxy\/proxy.ashx/i;
if (!proxyRe.test(req.url)) {
return next();
}
proxypage.proxy(req, res);
},
bodyParser.json(),
bodyParser.urlencoded({extended: true})
];
// grunt task config
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
tag: {
banner: '/* <%= pkg.name %>\n' +
' * version <%= pkg.version %>\n' +
' * Project: <%= pkg.homepage %>\n' +
' */\n'
},
copy: {
build: {
cwd: 'viewer',
src: ['**'],
dest: 'dist',
expand: true
}
},
clean: {
build: {
src: ['dist']
}
},
postcss: {
build: {
expand: true,
cwd: 'dist',
src: ['**/*.css'],
dest: 'dist'
}
},
cssmin: {
build: {
expand: true,
cwd: 'dist',
src: ['**/*.css'],
dest: 'dist'
}
},
stylelint: {
build: {
src: ['viewer/**/*.css', '!viewer/css/theme/**/*.css']
}
},
eslint: {
build: {
src: ['viewer/**/*.js'],
options: {
eslintrc: '.eslintrc'
}
}
},
uglify: {
build: {
files: [{
expand: true,
cwd: 'dist',
src: ['**/*.js', '!**/config/**'],
dest: 'dist',
ext: '.js'
}],
options: {
banner: '<%= tag.banner %>',
sourceMap: true,
sourceMapIncludeSources: true,
compress: {
'drop_console': true
}
}
}
},
watch: {
dev: {
files: ['viewer/**'],
tasks: ['eslint', 'stylelint']
},
build: {
files: ['dist/**'],
tasks: ['eshint', 'stylelint']
}
},
browserSync: {
dev: {
bsFiles: {
src : ['viewer/**']
},
options: {
cors: true,
https: true,
middleware: middleware,
port: 3000,
server: 'viewer',
ui: {
port: 3002
},
watchTask: true
}
},
build: {
bsFiles: {
src : ['dist/**']
},
options: {
cors: true,
https: true,
port: 3001,
server: 'dist',
ui: {
port: 3003
},
watchTask: true
}
}
},
compress: {
build: {
options: {
archive: 'dist/cmv-app.zip'
},
files: [{
expand: true,
cwd: 'dist',
src: ['**', '!**/dijit.css']
}]
}
}
});
// load the tasks
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-stylelint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-browser-sync');
grunt.loadNpmTasks('grunt-contrib-compress');
// define the tasks
grunt.registerTask('default', 'Watches the project for changes, automatically builds them and runs a web server and opens default browser to preview.', ['eslint', 'stylelint', 'browserSync:dev', 'watch:dev']);
grunt.registerTask('build', 'Compiles all of the assets and copies the files to the build directory.', ['clean', 'copy', 'scripts', 'stylesheets', 'compress']);
grunt.registerTask('build-view', 'Compiles all of the assets and copies the files to the build directory starts a web server and opens browser to preview app.', ['clean', 'copy', 'scripts', 'stylesheets', 'compress', 'browserSync:build', 'watch:build']);
grunt.registerTask('scripts', 'Compiles the JavaScript files.', ['eslint', 'uglify']);
grunt.registerTask('stylesheets', 'Auto prefixes css and compiles the stylesheets.', ['stylelint', 'postcss', 'cssmin']);
grunt.registerTask('lint', 'Run eslint and stylelint.', ['eslint', 'stylelint']);
};