forked from cmv/cmv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
181 lines (171 loc) · 6.14 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
169
170
171
172
173
174
175
176
177
178
179
180
181
/* global module */
module.exports = function (grunt) {
// middleware for grunt.connect
var middleware = function (connect, options, middlewares) {
// inject a custom middleware into the array of default middlewares for proxy page
var bodyParser = require('body-parser');
var proxypage = require('proxypage');
var proxyRe = /\/proxy\/proxy.ashx/i;
var enableCORS = function (req, res, next) {
res.setHeader('Access-Control-Allow-Origin', req.headers.origin || '*');
res.setHeader('Access-Control-Allow-Credentials', true);
res.setHeader('Access-Control-Allow-Methods', 'GET,HEAD,PUT,PATCH,POST,DELETE');
res.setHeader('Access-Control-Allow-Headers', req.headers['access-control-request-headers'] || 'Origin, X-Requested-With, Content-Type, Accept');
return next();
};
var proxyMiddleware = function (req, res, next) {
if (!proxyRe.test(req.url)) {
return next();
}
proxypage.proxy(req, res);
};
middlewares.unshift(proxyMiddleware);
middlewares.unshift(enableCORS);
middlewares.unshift(bodyParser.json()); //body parser, see https://github.com/senchalabs/connect/wiki/Connect-3.0
middlewares.unshift(bodyParser.urlencoded({extended: true})); //body parser
return middlewares;
};
// 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']
}
},
connect: {
dev: {
options: {
port: 3000,
base: 'viewer',
hostname: '*',
protocol: 'https',
keepalive: true,
middleware: middleware
}
},
build: {
options: {
port: 3001,
base: 'dist',
hostname: '*',
protocol: 'https',
keepalive: true,
middleware: middleware
}
}
},
open: {
'dev_browser': {
path: 'https://localhost:3000/index.html'
},
'build_browser': {
path: 'https://localhost:3001/index.html'
}
},
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-contrib-connect');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-open');
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', 'connect:dev', 'open:dev_browser', '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', 'connect:build', 'open:build_browser', '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']);
};