forked from GraphAlchemist/Alchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
580 lines (508 loc) · 16.9 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
"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("load-grunt-tasks") grunt
require("time-grunt") grunt
pkg = grunt.file.readJSON('./package.json')
# set up sauce labs credentials
if grunt.file.isFile('./sauce.yml')
s3Config = grunt.file.readYAML('./sauce.yml')
sauce_user_name = s3Config.SAUCE_USERNAME
sauce_access_key = s3Config.SAUCE_ACCESS_KEY
else
sauce_user_name = ''
sauce_access_key = ''
# set up s3 credentials
if grunt.file.isFile('./s3.yml')
s3Config = grunt.file.readYAML('./s3.yml')
key_id = s3Config.AWS_ACCESS_KEY_ID
secret = s3Config.AWS_SECRET_ACCESS_KEY
else
key_id = ''
secret = ''
grunt.initConfig
# Project settings
yeoman:
# Configurable paths
app: "app"
dist: "dist"
# Upload to CDN.
s3:
options:
#Accesses environment variables
key: key_id
secret: secret
access: 'public-read'
production:
bucket: "cdn.graphalchemist.com"
upload:[
# upload the files without version to CDN
src: ".tmp/s3/**"
dest: "/"
]
'string-replace':
version:
files:
'./bower.json': './bower.json'
'<%= yeoman.dist %>/alchemy.js':'<%= yeoman.dist %>/alchemy.js'
'<%= yeoman.dist %>/alchemy.min.js':'<%= yeoman.dist %>/alchemy.min.js'
options:
replacements: [
pattern: /#VERSION#/ig
replacement: pkg.version
]
release:
options:
file: 'package.json'
bump: false
commit: false
npm: false # never automatically publish to npm
# shell tasks
shell:
commitBuild:
command: "git add -A && git commit -am 'commit dist files for #{pkg.version}'"
# Watches files for changes and runs tasks based on the changed files
watch:
coffee:
files: ["app/scripts/{,*/,*/*/}*.{coffee,litcoffee,coffee.md}"]
tasks: ["copy:coffee", "coffee:dist", "coffee:dev"]
coffeeTest:
files: ["test/spec/{,*/}*.{coffee,litcoffee,coffee.md}"]
tasks: ["coffee:test", "test:watch"],
gruntfile:
files: ["Gruntfile.coffee"]
compass:
files: ["<%= yeoman.app %>/styles/{,*/,*/*/}*.{scss,sass}"]
tasks: ["compass:server", "autoprefixer"]
styles:
files: ["<%= yeoman.app %>/styles/{,*/}*.css"]
tasks: ["newer:copy:styles", "autoprefixer"]
livereload:
options:
livereload: "<%= connect.options.livereload %>"
files: ["<%= yeoman.app %>/{,*/}*.html", ".tmp/styles/{,*/}*.css", ".tmp/scripts/{,*/}*.js", "<%= yeoman.app %>/images/{,*/}*.{gif,jpeg,jpg,png,svg,webp}"]
# The actual grunt server settings
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", "<%= yeoman.app %>"]
test:
options:
port: 9001
base: [".tmp", "test", "<%= yeoman.app %>"]
dist:
options:
open: true
base: "<%= yeoman.dist %>"
livereload: false
# Empties folders to start fresh
clean:
dist:
files: [
dot: true
src: [".tmp", "<%= yeoman.dist %>/*", "!<%= yeoman.dist %>/.git*"]
]
server:
files: [
dot: true
src: ".tmp"
]
# Make sure code styles are up to par and there are no obvious mistakes
jshint:
options:
jshintrc: ".jshintrc"
reporter: require("jshint-stylish")
all: ["Gruntfile.coffee", "<%= yeoman.app %>/scripts/{,*/}*.js", "!<%= yeoman.app %>/scripts/vendor/*", "test/spec/{,*/}*.js"]
# Mocha testing framework configuration options
# mocha:
# all:
# options:
# run: true
# urls: ["http://<%= connect.test.options.hostname %>:<%= connect.test.options.port %>/index.html"]
# Test settings
karma:
options:
configFile: "test/karma.conf.coffee"
sauceLabs:
startConnect: true
reporters: ['saucelabs']
customLaunchers:
sl_safari_mac:
base: 'SauceLabs'
browserName: 'safari'
sl_chrome_mac:
base: 'SauceLabs'
browserName: 'chrome'
sl_ie_windows:
base: 'SauceLabs'
browserName: 'internet explorer'
sl_firefox:
base: 'SauceLabs'
browserName: 'firefox'
travis:
singleRun: true
browsers: ['PhantomJS', 'sl_safari_mac', 'sl_chrome_mac', 'sl_firefox']#, 'sl_ie_windows']
sauce:
singleRun: true
browsers: ['PhantomJS', 'sl_safari_mac', 'sl_chrome_mac', 'sl_firefox']#'sl_ie_windows']
local:
singleRun: false
browsers: ['PhantomJS', 'Chrome', 'Firefox', 'Safari', 'sl_ie_windows']
pullRequest:
singleRun: true
browsers: ['PhantomJS', 'Firefox']
# sauceLabs: []
# customLaunchers: []
# reporters: []
# Compiles CoffeeScript to JavaScript
coffee:
dist:
options:
bare: false
sourceMap: true
joinExt: 'src.coffee.md'
files:
# all of the core, alchemy.js files
".tmp/scripts/alchemy.js": [".tmp/scripts/alchemy/Alchemy.{coffee,litcoffee,coffee.md}"
".tmp/scripts/alchemy/{,*/}*.{coffee,litcoffee,coffee.md}"]
dev:
options:
bare: false
sourceMap: true
joinExt: 'src.coffee.md'
files:
# all of the core, alchemy.js files
".tmp/scripts/alchemy.js": [".tmp/scripts/alchemy/Alchemy.{coffee,litcoffee,coffee.md}"
".tmp/scripts/alchemy/{,*/}*.{coffee,litcoffee,coffee.md}"
]
test:
files: [
expand: true
cwd: "test/spec"
src: "{,*/}*.{coffee,litcoffee,coffee.md}"
dest: ".tmp/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
dist:
options:
generatedImagesDir: "<%= yeoman.dist %>/images/generated"
outputStyle: "compressed"
server:
options:
debugInfo: true
# 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 HTML file
"bower-install":
app:
html: "<%= yeoman.app %>/index.html"
ignorePath: "<%= yeoman.app %>/"
# Renames files for browser caching purposes
rev:
dist:
files:
src: ["<%= yeoman.dist %>/scripts/{,*/}*.js", "<%= yeoman.dist %>/styles/{,*/}*.css", "<%= yeoman.dist %>/images/{,*/}*.{gif,jpeg,jpg,png,webp}", "<%= yeoman.dist %>/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:
options:
dest: "<%= yeoman.dist %>"
html: "<%= yeoman.app %>/index.html"
# Performs rewrites based on rev and the useminPrepare configuration
usemin:
options:
assetsDirs: ["<%= yeoman.dist %>"]
html: ["<%= yeoman.dist %>/{,*/}*.html"]
css: ["<%= yeoman.dist %>/styles/{,*/}*.css"]
# The following *-min tasks produce minified files in the dist folder
imagemin:
dist:
files: [
expand: true
cwd: "<%= yeoman.app %>/images"
src: "{,*/}*.{gif,jpeg,jpg,png}"
dest: "<%= yeoman.dist %>/images"
]
svgmin:
dist:
files: [
expand: true
cwd: "<%= yeoman.app %>/images"
src: "{,*/}*.svg"
dest: "<%= yeoman.dist %>/images"
]
htmlmin:
dist:
options:
collapseBooleanAttributes: true
collapseWhitespace: true
removeAttributeQuotes: true
removeCommentsFromCDATA: true
removeEmptyAttributes: true
removeOptionalTags: true
removeRedundantAttributes: true
useShortDoctype: true
files: [
expand: true
cwd: "<%= yeoman.dist %>"
src: "{,*/}*.html"
dest: "<%= yeoman.dist %>"
]
# 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:
buildAlchemy:
files: [
'<%= yeoman.dist %>/alchemy.min.css': '.tmp/concat/styles/alchemy.min.css'
'<%= yeoman.dist %>/styles/vendor.css': '.tmp/concat/styles/vendor.css'
]
uglify:
dist:
files: [
{
dest: '<%= yeoman.dist %>/scripts/alchemy.min.js'
src: '.tmp/concat/scripts/alchemy.js'
}
{
dest: '<%= yeoman.dist %>/scripts/vendor.js'
src: '.tmp/concat/scripts/vendor.js'
}
]
buildAlchemy:
files: [
{
dest: '<%= yeoman.dist %>/alchemy.min.js'
src: '.tmp/concat/scripts/alchemy.js'
}
{
dest: '<%= yeoman.dist %>/scripts/vendor.js'
src: '.tmp/concat/scripts/vendor.js'
}
]
concat:
dist:
files: [
{
dest: ".tmp/concat/scripts/alchemy.js"
src: "{app,.tmp}/scripts/alchemy.js"
}
{
dest: '<%= yeoman.dist %>/scripts/alchemy.js'
src: "{app,.tmp}/scripts/alchemy.js"
}
{
dest: '<%= yeoman.dist %>/styles/alchemy.css'
src: '.tmp/styles/alchemy.css'
}
{
dest: '<%= yeoman.dist %>/styles/alchemy-white.css'
src: '.tmp/styles/alchemy-white.css'
}
]
s3:
files: [
dest: '.tmp/s3/alchemy.min.js'
src: ['<%= yeoman.dist %>/scripts/vendor.js'
'<%= yeoman.dist %>/alchemy.min.js']
,
dest: '.tmp/s3/alchemy.js'
src: ['<%= yeoman.dist %>/scripts/vendor.js'
'<%= yeoman.dist %>/alchemy.js']
,
dest: '.tmp/s3/alchemy.min.css'
src: ['<%= yeoman.dist %>/styles/vendor.css'
'<%= yeoman.dist %>/alchemy.min.css']
,
dest: '.tmp/s3/alchemy.css'
src: ['<%= yeoman.dist %>/styles/vendor.css'
'<%= yeoman.dist %>/alchemy.css']
]
s3Version:
files: [
expand: true
cwd: ".tmp/s3/"
src: "alchemy{,*}.*"
dest: ".tmp/s3/"
rename: (dest, src) ->
name = src.substring(0, src.indexOf('.'))
ext = src.substring(src.indexOf('.'), src.length)
versioned = "#{name}.#{pkg.version}#{ext}"
dest + versioned
]
buildAlchemy:
files: [
{
dest: ".tmp/concat/scripts/alchemy.js"
src: "{app,.tmp}/scripts/alchemy.js"
}
{
dest: '<%= yeoman.dist %>/alchemy.js'
src: "{app,.tmp}/scripts/alchemy.js"
}
{
dest: '<%= yeoman.dist %>/alchemy.css'
src: '.tmp/styles/alchemy.css'
}
{
dest: '<%= yeoman.dist %>/alchemy-white.css'
src: '.tmp/styles/alchemy-white.css'
}
]
# Copies remaining files to places other tasks can use
copy:
coffee:
files: [
expand: true,
dot: true,
cwd: '<%= yeoman.app %>/scripts',
dest: '.tmp/scripts',
src: '**/{,*/}*.{litcoffee,coffee,coffee.md}'
]
dist:
files: [
expand: true
dot: true
cwd: "<%= yeoman.app %>"
dest: "<%= yeoman.dist %>"
src: ["*.{ico,png,txt}", "images/{,*/}*.webp", "{,*/}*.html", "styles/fonts/{,*/}*.*", "sample_data/{,*/}*.json"]
]
s3:
files: [
expand: true
cwd: "<%= yeoman.dist %>/styles"
dest: ".tmp/s3/"
src: ["fonts/*", "images/*"]
]
styles:
expand: true
dot: true
cwd: "<%= yeoman.app %>/"
dest: ".tmp/"
src: "styles/**"
fonts:
expand: true
dot: true
cwd: ".tmp/styles"
dest: "<%= yeoman.dist %>/styles"
src: 'fonts/**'
images:
expand: true
dot: true
cwd: ".tmp/styles"
dest: "<%= yeoman.dist %>/styles"
src: "images/**"
archive:
expand: true
dot: true
dest: "archive/#{pkg.version}"
cwd: "<%= yeoman.dist %>"
src: "**"
concurrent:
# Run some tasks in parallel to speed up build process
server: ["compass:server", "coffee:dev", "copy:styles"]
test: ["coffee:test", "coffee:dist", "copy:styles"]
dist: ["coffee", "compass", "copy:styles", "imagemin", "svgmin"]
buildAlchemy: ["coffee:dist", "coffee:test", "compass", "copy:styles"]
grunt.loadNpmTasks('grunt-mocha')
grunt.loadNpmTasks('grunt-shell')
grunt.loadNpmTasks('grunt-release')
grunt.loadNpmTasks('grunt-string-replace')
# grunt.loadNpmTasks('grunt-s3') # yeoman already includes
grunt.registerTask 'bumpBower', ->
bower = grunt.file.readJSON('./bower.json')
bower['version'] = pkg.version
grunt.file.write('./bower.json', JSON.stringify(bower, null, 2) + '\n')
grunt.registerTask 'archiveDist', ->
path = "./archive/#{pkg.version}"
grunt.file.mkdir(path)
grunt.task.run 'copy:archive'
grunt.registerTask "serve", (target) ->
return grunt.task.run(["build", "connect:dist:keepalive"]) if target is "dist"
grunt.task.run ["clean:server", "copy:coffee", "concurrent:server", "autoprefixer", "connect:livereload", "watch"]
grunt.registerTask "server", ->
grunt.log.warn "The `server` task has been deprecated. Use `grunt serve` to start a server."
grunt.task.run ["serve"]
grunt.registerTask "test", (target) ->
grunt.task.run ["clean:server", "copy:coffee", "concurrent:test", "autoprefixer"] if target isnt "watch"
if not target then target = "keepalive"
switch target
# for debugging tasks locally
when "keepalive"
grunt.task.run ["connect:test", "karma:local"]
when "dist"
grunt.task.run ["connect:test", "karma:sauce"]
when "pr"
grunt.task.run ["connect:test", "karma:pullRequest"]
when "travis"
grunt.task.run ["connect:test", "karma:travis"]
grunt.registerTask 'build', ["clean:dist", "useminPrepare",
"copy:coffee", "concurrent:buildAlchemy",
"copy:fonts", "copy:images",
"autoprefixer", "concat:buildAlchemy",
"concat:generated", "cssmin:buildAlchemy",
"uglify:buildAlchemy"]
releaseFlag = grunt.option('release')
pullRequest = grunt.option('pr')
travis = grunt.option('travis')
grunt.registerTask "default",
# release alchemy
if releaseFlag
[
"build",
"string-replace", # apply version to alchemy.js
"bumpBower", # bump bower version
"shell:commitBuild", # commit dist files
"release", # create tag and version
"archiveDist", # create archive of files to zip for github release
"concat:s3", # squash vendor and alchemy files for cdn
"concat:s3Version", # apply version numbers for cdn
"s3:production" # publish files to s3 for cdn
]
# Travis-ci on a commit to the main repo branches
else if travis
["test:travis",
"build"]
# Travis-ci on a pull request
else if pullRequest
["test:pr",
"build"]
# test with sauce and build scripts
else
["test:dist",
"build"]