-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
458 lines (352 loc) · 14.2 KB
/
Gruntfile.coffee
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
'use strict'
child_process = require( 'child_process' )
module.exports = ( grunt ) ->
grunt.initConfig(
## ------------------------------------------------
## Build configuration
## ------------------------------------------------
##
## Contents of npm's 'package.json' file as `<%= npm.pkg.* %>`
## Installed dependencies of npm's 'package.json' file as `<%= npm.installed.* %>`
##
npm:
pkg: grunt.file.readJSON( 'package.json' )
installed: JSON.parse( child_process.execSync( 'npm ls --json --prod --depth 0 --silent' )).dependencies
##
## Local data as `<%= build.* %>`
##
build:
##
## Filesystem:
##
## Included for configurations that need an absolute path.
##
base: '<%= process.cwd() %>/'
source: 'src/'
dist: 'dist/'
assembly:
lib: '<%= build.dist %>lib/'
doc: '<%= build.dist %>doc/'
test:
src: 'test/'
report: 'test-report/'
artifactBase: '<%= build.dist %><%= npm.pkg.name %>-<%= npm.pkg.version %>'
##
## Parts:
##
part:
lib:
srcDir: '<%= build.source %>'
srcPat: '**/*.coffee'
src: '<%= build.part.lib.srcDir %><%= build.part.lib.srcPat %>'
tgt: '<%= build.assembly.lib %>'
doc:
## NOTE: Directories to include and to exclude cannot be expressed in a single expression.
##
src: [ '<%= build.source %>', 'vendor' ]
srcExclude: []
## NOTE: `tgt` - must - be a directory.
##
tgt: '<%= build.assembly.doc %>'
## ------------------------------------------------
## Configuration for each npm-loaded task:target
## ------------------------------------------------
##
## Where applicable these task have a target per build part and sometimes, debugging mode.
##
##
## Remove your previously built build results.
##
## https://github.com/gruntjs/grunt-contrib-clean#readme
##
clean:
##
## Distribution artifact destination directory:
##
dist:
files: [
src: '<%= build.dist %>'
]
##
## Per build part cleaning within the above destination directory:
##
lib:
files: [
src: '<%= build.part.lib.tgt %>'
]
doc:
files: [
src: '<%= build.part.doc.tgt %>'
]
##
## Compile and bundle your code.
##
## https://github.com/gruntjs/grunt-contrib-coffee#readme
##
coffee:
## Non-debugging build
##
lib_dist:
options:
transpile:
presets: [
'@babel/env'
]
files: [
expand: true ## Enable dynamic expansion.
cwd: '<%= build.part.lib.srcDir %>' ## Source matches are relative to this path.
src: '<%= build.part.lib.srcPat %>' ## Pattern(s) to match.
dest: '<%= build.part.lib.tgt %>' ## Destination path prefix.
ext: '.js' ## Dest filepaths will have this extension.
]
## Debugging build
##
lib_debug:
options:
sourceMap: true
transpile:
presets: [
'@babel/env'
]
files: '<%= coffee.lib_dist.files %>'
##
## Delint your coffeescript - before transpilation to javascript.
##
## https://github.com/vojtajina/grunt-coffeelint#readme
##
## http://www.coffeelint.org/
## file:./coffeelint.json
##
coffeelint:
options:
configFile: 'coffeelint.json'
lib:
files: [
src: '<%= build.part.lib.src %>'
]
gruntfile:
files: [
src: 'Gruntfile.coffee'
]
test:
files: [
src: '<%= build.test.src %>**/*.coffee'
]
##
## Delint your coffeescript - after transpilation to javascript.
##
## https://github.com/bmac/grunt-coffee-jshint#readme
##
## https://github.com/Clever/coffee-jshint#readme
## http://www.jshint.com/docs/options/
## http://www.jshint.com/
##
coffee_jshint:
options:
## NOTE: The use of browserify and the UMD (Universal Module Definition) pattern implies the legimate use of the globals below.
##
## I would have liked to specify these globals and other jshint options through a '.jshintrc' file instead but have been unsuccessful so far.
##
## Look at the supplied 'file:./.jshintrc' for further inspiration.
##
globals: [
'define'
]
## Caveat: Using the extra variable `jshintOptions` to share a common set between the different targets below. Afaict this can't be done any
## other way. (Duplicating doesn't count).
##
jshintOptions: ( jshintOptions = [
## Enforcing options:
'eqeqeq'
'forin'
'noarg'
'nonew'
'undef'
'unused'
## Relaxing options:
'debug'
'loopfunc'
])
lib:
options:
jshintOptions: jshintOptions.concat( [
## Environment options:
'browserify'
'browser'
'devel'
] )
files: '<%= coffeelint.lib.files %>'
gruntfile:
options:
jshintOptions: jshintOptions.concat( [
## Environment options:
'node'
] )
files: '<%= coffeelint.gruntfile.files %>'
test:
options:
jshintOptions: jshintOptions.concat( [
## Environment options:
'jasmine'
'node'
] )
files: '<%= coffeelint.test.files %>'
##
## Test your build.
##
mochaTest:
unit_ci:
options:
reporter: 'spec'
require: 'coffee-script'
timeout: 30000
src: 'test/**/*.{coffee,js}'
##
## https://github.com/gruntjs/grunt-contrib-watch#readme
##
## Note that 'watch' isn't your garden-variety multi-task even though its config makes it deceivingly look
## like one.
##
## Its intended mode of operation is as a (non-multi-) task, like: `grunt watch`.
## Doing so will make it watch **all** targets' files and fork their associated `tasks` on any detected change.
##
## That doesn't mean that it isn't possible to, say, `grunt watch:coffee`, it is, but its a one or all choice;
## Making it work for multiple targets (except all) is not possible.
##
## Also note that a value for `files` can only be a pattern string or an array of such values
## (yes that definition is recursive).
##
watch:
lib:
files: '<%= build.part.lib.src.lint %>'
tasks: [
'lint:lib'
'coffee:lib_debug'
]
##
## Generate your code's documentation
##
## https://github.com/gruntjs/grunt-contrib-yuidoc#readme
##
## http://yui.github.io/yuidoc/args/#command-line
## http://yui.github.io/yuidoc/args/#yuidocjson-fields
##
yuidoc:
lib:
name: '<%= npm.pkg.name %>'
description: '<%= npm.pkg.description %>'
url: '<%= npm.pkg.homepage %>'
version: '<%= npm.pkg.version %>'
options:
## NOTE: Globbing patterns in `paths` cannot match - any - symbolically linked directories; yuidoc will not find them.
##
## Therefore, the 'doc' task will do any globbing expansion beforehand, and then reset `paths` to the result.
##
paths: '<%= build.part.doc.src %>'
## NOTE: `exclude` must be a string containing comma separated paths to directories.
##
## This is exactly what the template expansion below will achieve:
##
exclude: '<%= grunt.file.expand( grunt.config( "build.part.doc.srcExclude" )) %>'
## NOTE: Yuidoc will empty the `outdir` directory before construction.
##
outdir: '<%= build.part.doc.tgt %>'
extension: '.coffee'
syntaxtype: 'coffee'
linkNatives: true
tabtospace: 4
)
## ================================================
## The build tools, npm-loaded tasks:
##
## Be sure to have `npm install <plugin> --save-dev`-ed each of these:
## ================================================
grunt.loadNpmTasks( 'grunt-coffeelint' )
grunt.loadNpmTasks( 'grunt-coffee-jshint' )
grunt.loadNpmTasks( 'grunt-contrib-clean' )
grunt.loadNpmTasks( 'grunt-contrib-coffee' )
grunt.loadNpmTasks( 'grunt-contrib-watch' )
grunt.loadNpmTasks( 'grunt-contrib-yuidoc' )
grunt.loadNpmTasks( 'grunt-mocha-test' )
## ================================================
## Per build part tasks:
## ================================================
grunt.registerTask(
'lib'
'Build the lib.'
( debugging ) ->
grunt.task.run(
'lint:lib'
'clean:lib'
"coffee:lib_#{debugging}"
)
)
grunt.registerTask(
'doc'
'Build the documentation'
() ->
## Fully, expand any globs in 'build.part.doc.src' before passing the result to `yuidoc`.
##
## Because `yuidoc` expects either a string containing a single directory path or an array of such strings
## We cannot use the grunt template mechanism to do the substitution.
##
path = 'yuidoc.lib.options.paths'
grunt.config( path, grunt.file.expand( grunt.config( path )))
##
grunt.task.run(
'clean:doc'
'yuidoc:lib'
)
)
grunt.registerTask(
'lint'
'Look for lint in the lib\'s code'
( target = '' ) ->
grunt.task.run(
"coffeelint:#{target}"
"coffee_jshint:#{target}"
)
)
grunt.registerTask(
'test'
'Unit test the lib\'s code'
( mode = 'ci' ) ->
grunt.task.run(
"mochaTest:unit_#{mode}"
)
)
## ================================================
## Command line tasks; the usual suspects anyway:
## ================================================
grunt.registerTask(
'default'
'Shortcut for `grunt dist` unless the `GRUNT_TASKS` environment variable specifies a space separated list of alternative tasks to run instead.'
() ->
tasks = process.env.GRUNT_TASKS?.split( /\s/ )
grunt.task.run( if tasks?.length then tasks else 'dist' )
)
grunt.registerTask(
'dist'
[
'clean:dist'
'lib:dist'
'test:ci'
'doc'
]
)
grunt.registerTask(
'debug'
[
'clean:dist'
'lib:debug'
'test:ci'
]
)
grunt.registerTask(
'dev'
[
'clean:dist'
'lib:debug'
'watch'
]
)