-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
597 lines (516 loc) · 14 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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
# Generated on 2014-02-27 using generator-angular-fullstack 1.2.7
"use strict"
# # Globbing
# for performance reasons we're only matching one level down:
# 'test/spec/{,*/}*.js'
# use this if you want to recursively match all subfolders:
# 'test/spec/**/*.js'
module.exports = (grunt) ->
require('./lib/util/silencer')(grunt)
exec = require("child_process").exec
spawn = require("child_process").spawn
inquirer = require("inquirer")
# Load grunt tasks automatically
require("load-grunt-tasks") grunt
# Time how long tasks take. Can help when optimizing build times
require("time-grunt") grunt
logExec = (err, stdout, stderr) ->
grunt.log.writeln stdout
grunt.log.error stderr if stderr
grunt.log.error err if err isnt null
return
mongod = ->
#make this look like a task for the log, have not found a way to spawn a task that does unref and keeps child attached to the terminal
grunt.log.header 'Running "mongod"'
daemon = spawn("mongod", [],
stdio: "ignore" #all output is to /usr/local/var/log/mongodb/mongo.log anyway
)
daemon.unref()
return
# Define the configuration for all the tasks
grunt.initConfig
# Project settings
yeoman:
# configurable paths
app: require("./bower.json").appPath or "app"
dist: "dist"
express:
options:
port: process.env.PORT or 9000
dev:
options:
script: "server.js"
debug: true
prod:
options:
script: "dist/server.js"
node_env: "production"
open:
server:
url: "http://localhost:<%= express.options.port %>"
watch:
js:
options:
spawn: false
files: [
"lib/**/*.js"
"test/lib_spec/**/*.js"
]
tasks: ["default"]
coffee:
files: ["<%= yeoman.app %>/scripts/{,*/}*.{coffee,litcoffee,coffee.md}"]
tasks: ["newer:coffee:dist"]
coffeeTest:
files: ["test/app_spec/{,*/}*.{coffee,litcoffee,coffee.md}"]
tasks: [
"newer:coffee:test"
"karma"
]
compass:
files: ["<%= yeoman.app %>/styles/{,*/}*.{scss,sass}"]
tasks: [
"compass:server"
"autoprefixer"
]
gruntfile:
files: ["Gruntfile.js"]
livereload:
files: [
"<%= yeoman.app %>/views/{,*//*}*.{html,jade}"
"{.tmp,<%= yeoman.app %>}/styles/{,*//*}*.css"
"{.tmp,<%= yeoman.app %>}/scripts/{,*//*}*.js"
"<%= yeoman.app %>/images/{,*//*}*.{png,jpg,jpeg,gif,webp,svg}"
]
options:
livereload: true
express:
files: [
"server.js"
"lib/**/*.{js,json}"
]
tasks: [
"newer:jshint:server"
"express:dev"
"wait"
]
options:
livereload: true
nospawn: true #Without this option specified express won't be reloaded
# Make sure code styles are up to par and there are no obvious mistakes
jshint:
options:
jshintrc: ".jshintrc"
reporter: require("jshint-stylish")
server:
options:
jshintrc: "lib/.jshintrc"
src: ["lib/{,*/}*.js"]
all: []
# Empties folders to start fresh
clean:
dist:
files: [
dot: true
src: [
".tmp"
"<%= yeoman.dist %>/views/*"
"<%= yeoman.dist %>/public/*"
"!<%= yeoman.dist %>/public/.git*"
]
]
heroku:
files: [
dot: true
src: [
"heroku/*"
"!heroku/.git*"
"!heroku/Procfile"
]
]
server: ".tmp"
bower: "app/bower_components"
npm: "node_modules"
# Add vendor prefixed styles
autoprefixer:
options:
browsers: ["last 1 version"]
dist:
files: [
expand: true
cwd: ".tmp/styles/"
src: "{,*/}*.css"
dest: ".tmp/styles/"
]
# Automatically inject Bower components into the app
"bower-install":
app:
html: "<%= yeoman.app %>/views/index.html"
ignorePath: "<%= yeoman.app %>/"
exclude: ["bootstrap-sass"]
# Compiles CoffeeScript to JavaScript
coffee:
options:
sourceMap: true
sourceRoot: ""
dist:
files: [
expand: true
cwd: "<%= yeoman.app %>/scripts"
src: "{,*/}*.coffee"
dest: ".tmp/scripts"
ext: ".js"
]
test:
files: [
expand: true
cwd: "test/app_spec"
src: "{,*/}*.coffee"
dest: ".tmp/app_spec"
ext: ".js"
]
# Compiles Sass to CSS and generates necessary files if requested
compass:
options:
sassDir: "<%= yeoman.app %>/styles"
cssDir: ".tmp/styles"
generatedImagesDir: ".tmp/images/generated"
imagesDir: "<%= yeoman.app %>/images"
javascriptsDir: "<%= yeoman.app %>/scripts"
fontsDir: "<%= yeoman.app %>/styles/fonts"
importPath: "<%= yeoman.app %>/bower_components"
httpImagesPath: "/images"
httpGeneratedImagesPath: "/images/generated"
httpFontsPath: "/styles/fonts"
relativeAssets: false
assetCacheBuster: false
raw: "Sass::Script::Number.precision = 10\n"
dist:
options:
generatedImagesDir: "<%= yeoman.dist %>/public/images/generated"
server:
options:
debugInfo: true
# Renames files for browser caching purposes
rev:
dist:
files:
src: [
"<%= yeoman.dist %>/public/scripts/{,*/}*.js"
"<%= yeoman.dist %>/public/styles/{,*/}*.css"
"<%= yeoman.dist %>/public/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}"
"<%= yeoman.dist %>/public/styles/fonts/*"
]
# Reads HTML for usemin blocks to enable smart builds that automatically
# concat, minify and revision files. Creates configurations in memory so
# additional tasks can operate on them
useminPrepare:
html: [
"<%= yeoman.app %>/views/index.html"
"<%= yeoman.app %>/views/index.jade"
]
options:
dest: "<%= yeoman.dist %>/public"
# Performs rewrites based on rev and the useminPrepare configuration
usemin:
html: [
"<%= yeoman.dist %>/views/{,*/}*.html"
"<%= yeoman.dist %>/views/{,*/}*.jade"
]
css: ["<%= yeoman.dist %>/public/styles/{,*/}*.css"]
options:
assetsDirs: ["<%= yeoman.dist %>/public"]
# The following *-min tasks produce minified files in the dist folder
imagemin:
dist:
files: [
expand: true
cwd: "<%= yeoman.app %>/images"
src: "{,*/}*.{png,jpg,jpeg,gif}"
dest: "<%= yeoman.dist %>/public/images"
]
svgmin:
dist:
files: [
expand: true
cwd: "<%= yeoman.app %>/images"
src: "{,*/}*.svg"
dest: "<%= yeoman.dist %>/public/images"
]
htmlmin:
dist:
options: {}
#collapseWhitespace: true,
#collapseBooleanAttributes: true,
#removeCommentsFromCDATA: true,
#removeOptionalTags: true
files: [
expand: true
cwd: "<%= yeoman.app %>/views"
src: [
"*.html"
"partials/**/*.html"
]
dest: "<%= yeoman.dist %>/views"
]
# Allow the use of non-minsafe AngularJS files. Automatically makes it
# minsafe compatible so Uglify does not destroy the ng references
ngmin:
dist:
files: [
expand: true
cwd: ".tmp/concat/scripts"
src: "*.js"
dest: ".tmp/concat/scripts"
]
# Replace Google CDN references
cdnify:
dist:
html: ["<%= yeoman.dist %>/views/*.html"]
# Copies remaining files to places other tasks can use
copy:
dist:
files: [
{
expand: true
dot: true
cwd: "<%= yeoman.app %>"
dest: "<%= yeoman.dist %>/public"
src: [
"*.{ico,png,txt}"
".htaccess"
"bower_components/**/*"
"images/{,*/}*.{webp}"
"fonts/**/*"
]
}
{
expand: true
dot: true
cwd: "<%= yeoman.app %>/views"
dest: "<%= yeoman.dist %>/views"
src: "**/*.jade"
}
{
expand: true
cwd: ".tmp/images"
dest: "<%= yeoman.dist %>/public/images"
src: ["generated/*"]
}
{
expand: true
dest: "<%= yeoman.dist %>"
src: [
"package.json"
"server.js"
"lib/**/*"
]
}
]
styles:
expand: true
cwd: "<%= yeoman.app %>/styles"
dest: ".tmp/styles/"
src: "{,*/}*.css"
# Run some tasks in parallel to speed up the build process
concurrent:
server: [
"coffee:dist"
"compass:server"
]
test: [
"coffee"
"compass"
]
dist: [
"coffee"
"compass:dist"
"imagemin"
"svgmin"
"htmlmin"
]
# By default, your `index.html`'s <!-- Usemin block --> will take care of
# minification. These next options are pre-configured if you do not wish
# to use the Usemin blocks.
# cssmin: {
# dist: {
# files: {
# '<%= yeoman.dist %>/styles/main.css': [
# '.tmp/styles/{,*/}*.css',
# '<%= yeoman.app %>/styles/{,*/}*.css'
# ]
# }
# }
# },
# uglify: {
# dist: {
# files: {
# '<%= yeoman.dist %>/scripts/scripts.js': [
# '<%= yeoman.dist %>/scripts/scripts.js'
# ]
# }
# }
# },
# concat: {
# dist: {}
# },
# Test settings
karma:
unit:
configFile: "karma.conf.js"
singleRun: true
mochaTest:
test:
options:
reporter: "spec"
clearRequireCache: true
src: [
"lib/models/*.js"
"lib/controllers/*.js"
"test/lib_spec/**/*.js"
]
exec:
git_fetch_dist:
cmd: "git fetch heroku"
cwd: "dist"
git_reset_hard_heroku_master:
cmd: "git reset --hard heroku/master"
cwd: "dist"
git_pull_dist:
cmd: "git pull heroku master"
cwd: "dist"
git_add_dist:
cmd: "git add -A"
cwd: "dist"
git_status:
cmd: "git status"
cwd: "dist"
git_commit_dist:
cmd: "git commit -m \"heroku deploy\""
cwd: "dist"
git_push_dist_heroku:
cmd: "git push heroku master"
cwd: "dist"
# On watch events, if the changed file is a test file then configure mochaTest to only
# run the tests from that file. Otherwise run all the tests
mochaTestSrc = grunt.config("mochaTest.test.src")
grunt.event.on "watch", (action, filepath) ->
grunt.config "mochaTest.test.src", mochaTestSrc
grunt.config "mochaTest.test.src", filepath if filepath.match("test/")
return
# Used for delaying livereload until after server has restarted
grunt.registerTask "wait", ->
grunt.log.ok "Waiting for server reload..."
done = @async()
setTimeout (->
grunt.log.writeln "Done waiting!"
done()
return
), 500
return
grunt.registerTask "express-keepalive", "Keep grunt running", ->
@async()
return
grunt.registerTask "serve", ->
mongod() unless grunt.option("no-mongo")
if grunt.option("target") is "dist"
return grunt.task.run([
"build"
"express:prod"
"open"
"express-keepalive"
])
grunt.task.run [
"clean:server"
"bower-install"
"concurrent:server"
"autoprefixer"
"express:dev"
"open"
"watch"
]
return
grunt.registerTask "server", ->
grunt.log.warn "The `server` task has been deprecated. Use `grunt serve` to start a server."
grunt.task.run ["serve"]
return
grunt.registerTask "test", [
"clean:server"
"concurrent:test"
"autoprefixer"
"karma"
"mochaTest"
]
grunt.registerTask "build", [
"clean:dist"
"bower-install"
"useminPrepare"
"concurrent:dist"
"autoprefixer"
"concat"
"ngmin"
"copy:dist"
"cdnify"
"cssmin"
"uglify"
"rev"
"usemin"
]
grunt.registerTask "deploy", ->
cb = @async()
grunt.silencer.enabled = false
q =
name: "ok"
default: false
type: "confirm"
message: '\n' + grunt.silencer.taskLog?['exec:git_status']?.join('\n') + 'Ready to deploy'
inquirer.prompt q, (a) ->
if a.ok
grunt.log.ok "proceeding with deployment"
grunt.silencer.enabled = true
grunt.task.run [
"exec:git_commit_dist"
"exec:git_push_dist_heroku"
]
else
grunt.log.warn "stopping deployment."
grunt.task.run ["exec:git_reset_hard_heroku_master"]
cb()
return
return
grunt.registerTask "heroku", [
"exec:git_fetch_dist"
"exec:git_reset_hard_heroku_master"
"exec:git_pull_dist"
'test'
"build"
"exec:git_add_dist"
"exec:git_status"
"deploy"
]
grunt.registerTask "default", [
"newer:jshint"
"test"
"build"
]
grunt.registerTask "run-bower-install", "runs bower install as from the command line", ->
exec = require("child_process").exec
cb = @async()
exec "bower install", {}, (err, stdout, stderr) ->
logExec err, stdout, stderr
cb()
return
return
grunt.registerTask "run-npm-install", "runs npm install as from the command line", ->
cb = @async()
exec "npm install", {}, (err, stdout, stderr) ->
logExec err, stdout, stderr
cb()
return
return
grunt.registerTask "reinstall", [
"clean:bower"
"clean:npm"
"run-npm-install"
"run-bower-install"
]
return