-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
gruntfile.js
150 lines (142 loc) · 4.82 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
/* global module */
module.exports = function (grunt) {
// 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: {
src: ['**', '!cmv/**', '!wab/**', '!node_modules/**', '!tests/**', '!package.json', '!gruntfile.js'],
dest: 'dist',
expand: true
}
},
clean: {
build: {
src: ['dist']
}
},
postcss: {
build: {
expand: true,
cwd: 'dist/widgets',
src: ['widgets/**/*.css'],
dest: 'dist/widgets'
}
},
cssmin: {
build: {
expand: true,
cwd: 'dist',
src: ['css/*.css'],
dest: 'dist'
}
},
csslint: {
build: {
src: ['css/*.css'],
options: {
csslintrc: '.csslintrc'
}
}
},
eslint: {
build: {
src: ['cmv/js/viewer/_WABMixin.js', 'config/**/*.js'],
options: {
eslintrc: '.eslintrc'
}
}
},
uglify: {
build: {
files: [{
expand: true,
cwd: 'dist',
src: ['**/*.js', '!**/config/**', '!**/cmv/**', '!**/wab/**', '!**/widgets/**'],
dest: 'dist',
ext: '.js'
}],
options: {
banner: '<%= tag.banner %>',
sourceMap: true,
sourceMapIncludeSources: true,
compress: {
'drop_console': false
}
}
}
},
watch: {
dev: {
files: ['config/**', 'css/**'],
tasks: ['eslint', 'csslint']
},
build: {
files: ['config/**', 'css/**'],
tasks: ['eslint', 'csslint']
}
},
connect: {
dev: {
options: {
port: 3000,
base: '.',
hostname: '*'
}
},
build: {
options: {
port: 3001,
base: 'dist/viewer',
hostname: '*'
}
}
},
open: {
'dev_browser': {
path: 'http://localhost:3000/demo.html'
},
'build_browser': {
path: 'http://localhost:3001/demo.html'
}
},
compress: {
build: {
options: {
archive: 'dist/cmv-wab-widgets.zip'
},
files: [{
expand: true,
cwd: 'dist',
src: ['**']
}]
}
}
});
// 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-contrib-csslint');
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', 'csslint', '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:build']);
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:build', '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.', ['csslint', 'postcss', 'cssmin']);
grunt.registerTask('lint', 'Run simple eslint and csslint.', ['eslint', 'csslint']);
};