-
Notifications
You must be signed in to change notification settings - Fork 58
/
Gruntfile.js
261 lines (255 loc) · 5.34 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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
'use strict';
module.exports = function (grunt) {
// Load all grunt tasks
require('load-grunt-tasks')(grunt, {pattern: ['grunt-*', '!grunt-build-lifecycle']});
// Show elapsed time at the end
require('time-grunt')(grunt);
// Project configuration.
grunt.initConfig({
// Project settings
config: {
// Configurable paths
app: '.',
dev: 'src',
dist: 'dist',
temp: '.tmp'
},
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> Regents of the University of California' +
' Licensed MIT */\n',
// Task configuration.
lifecycle: { // need to build out
'bowerSetup': [
'bowerInstall'
],
// Lint Step
'validate': [
'jshint',
'eslint'
],
'test': [ // run all tests
'connect:test',
'karma:unit'
],
'package': [
'clean',
'uglify'
],
'document': [
'jsdoc'
],
'open-docs': [
'open:docs',
'open:coverage'
],
'benchmark': [ // separate from document as it adds a milestone each time
'plato',
'open:plato'
]
// separate from lifecycle build task for taking a group of maps and building caches
// separate from lifecycle support watch and serve
},
bowerInstall: { // Automatically inject Bower components into the HTML file https://github.com/stephenplusplus/grunt-bower-install
target: {
// Point to the files that should be updated when
// you run `grunt bower-install`
src: [
'<%= config.app %>/index.html' // .html support...
],
// Optional:
// ---------
cwd: '',
dependencies: true,
devDependencies: false,
exclude: [
/jquery/,
/modernizr/
],
fileTypes: {},
ignorePath: ''
}
},
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
gruntfile: {
src: 'Gruntfile.js'
},
scripts: {
src: ['src/**/*.js']
},
test: {
src: ['test/**/*-test.js']
}
},
eslint: {
options: {
config: 'eslint.json',
format: 'stylish'
},
target: [
'<%= config.app %>/src/{,*/}*.js',
'test/spec/{,*/}*.js'
]
},
clean: {
files: ['dist', 'test/coverage', 'test/report']
},
uglify: {
options: {
banner: '<%= banner %>'
},
dist: {
src: ['src/**/*.js'],
dest: 'dist/jquery.<%= pkg.name %>.min.js'
}
},
connect: {
options: {
port: 9000,
livereload: 35729,
// Change this to '0.0.0.0' to access the server from outside
hostname: 'localhost'
},
livereload: {
options: {
open: true,
base: [
'.tmp',
'<%= config.app %>'
]
}
},
test: {
options: {
port: 9001,
base: [
'test'
]
}
},
datastore: {
options: {
livereload: false,
open: false,
base: [
'.tmp',
'<%= config.app %>'
]
}
},
dist: {
options: {
open: true,
base: '<%= config.dist %>',
livereload: false
}
}
},
karma: {
options: {
configFile: 'karma.conf.js'
},
unit: {
singleRun: true,
browsers: ['PhantomJS'],
reporters: ['progress']
},
report: {
singleRun: true,
browsers: ['Chrome'],
reporters: ['progress', 'html', 'coverage']
}
},
jsdoc: {
dist: {
// Force usage of JSDoc 3.3.0
jsdoc: './node_modules/.bin/jsdoc',
// The rest of your configuration.
src: [
'<%= config.app %>/src/**/*.js',
'README.md'
],
options: {
destination: 'docs/',
template: 'node_modules/grunt-jsdoc/node_modules/ink-docstrap/template',
configure: 'node_modules/grunt-jsdoc/node_modules/ink-docstrap/template/jsdoc.conf.json'
}
}
},
plato: {
all: {
options: {
jshint: grunt.file.readJSON('.jshintrc'),
complexity: {
logicalor: false,
switchcase: false,
forin: true,
trycatch: true
},
exclude: /\.min\.js$/ // excludes source files finishing with ".min.js"
},
files: {
'plato': [
'<%= config.dev %>/{,*/}*.js'
]
}
}
},
open: {
server: {
path: 'http://localhost:<%= connect.options.port %>'
},
plato: {
file: 'plato/index.html'
},
coverage: { // grab the latest Chrome coverage report, currently bug that only covers last browser to finish
path: function () {
var reports = grunt.file.expand('coverage/Chrome*/index.html');
return reports[reports.length - 1].toString();
}
},
docs: {
file: 'docs/index.html'
}
},
watch: {
options: {
livereload: true
},
html: {
files: ['index.html']
},
styles: {
files: ['styles/**/*.css']
},
karma: {
files: ['src/**/*.js', 'test/**/*-test.js'],
tasks: ['karma:unit:run']
}
},
shell: {
datastore: {
command: 'node tasks/datastores.js',
options: {
execOptions: {
cwd: '.'
}
}
}
}
});
// Making grunt default to force so it won't die on jshint warnings
// grunt.option('force', true);
grunt.loadNpmTasks('grunt-build-lifecycle');
// Default task.
grunt.registerTask('default', ['package']);
grunt.registerTask('server', ['connect:livereload', 'watch']);
grunt.registerTask('datastore', ['connect:datastore', 'shell:datastore']);
};