-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
135 lines (122 loc) · 2.38 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
'use strict';
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: {
curly: true,
eqeqeq: true,
freeze: true,
latedef: true,
strict: true,
undef: true,
unused: true,
esnext: true
},
node_src: {
options: {
node: true
},
src: ['Gruntfile.js', 'lib/*.js']
},
test_src: {
options: {
node: true,
mocha: true
},
src: ['test/*.js']
},
browser_src: {
options: {
strict: 'global',
browser: true,
browserify: true,
jquery: true
},
src: ['web/js/*.js']
}
},
htmlhint: {
src: ['web/*.html']
},
jscs: {
options: {
preset: 'airbnb',
validateIndentation: '\t',
maximumLineLength: 120,
requireTrailingComma: false,
disallowTrailingComma: true,
requirePaddingNewLinesAfterBlocks: false,
requirePaddingNewLinesBeforeLineComments: false,
requireCamelCaseOrUpperCaseIdentifiers: false
},
src: ['Gruntfile.js', 'lib/*.js', 'test/*.js', 'web/js/*.js']
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/**/*.js']
}
},
browserify: {
compile: {
src: ['web/js/*.js', 'lib/*.js'],
dest: 'build/temp/main.bundled.js',
options: {
alias: {
cgr: './lib/cgr.js'
}
}
}
},
babel: {
options: {
presets: ['@babel/preset-env'],
plugins: ['transform-remove-strict-mode']
},
compile: {
files: {
'build/temp/main.babeld.js': 'build/temp/main.bundled.js'
}
}
},
uglify: {
compile: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */',
output: {
ascii_only: true
},
mangle: false
},
src: 'build/temp/main.babeld.js',
dest: 'build/web/main.js'
}
},
htmlmin: {
compile: {
options: {
removeComments: true,
collapseWhitespace: true,
minifyCSS: true
},
files: {
'build/web/index.html': 'web/index.html'
}
}
},
clean: {
temp: ['build/temp'],
web: ['build/web'],
all: ['build']
}
});
grunt.registerTask('test', ['mochaTest', 'jscs', 'jshint', 'htmlhint']);
grunt.registerTask('web', [
'clean:web', 'clean:temp', 'browserify', 'babel', 'uglify', 'htmlmin'
]);
grunt.registerTask('default', ['test', 'web']);
};