Update build with changes from crafting-guide.com

This commit is contained in:
Andrew Miner
2016-04-03 21:50:52 -07:00
parent 3ae13b5acd
commit c5012e8b5b
4 changed files with 99 additions and 53 deletions
+72 -12
View File
@@ -1,12 +1,9 @@
###
# Crafting Guide - Gruntfile.coffee
#
# Copyright (c) 2014 by Redwood Labs
# Copyright © 2015 by Redwood Labs
# All rights reserved.
###
#
fs = require 'fs'
util = require 'util'
fs = require 'fs'
########################################################################################################################
@@ -15,10 +12,33 @@ module.exports = (grunt)->
grunt.loadTasks tasks for tasks in grunt.file.expand './node_modules/grunt-*/tasks'
grunt.config.init
compress:
static:
options:
mode: 'gzip'
files: [
{expand: true, cwd:'./build/static', src:'**/*.cg', dest:'./dist/'}
]
copy:
data:
files: [
{expand:true, cwd:'./data/', src:'**/*', dest:'./build/'}
]
build_to_dist:
files: [
{expand:true, cwd:'./build/', src:'**/*', dest:'./dist/'}
]
clean:
build: ['./build']
dist: ['./dist']
mochaTest:
options:
bail: true
color: true
bail: true
color: true
reporter: 'dot'
require: [
'coffee-script/register'
@@ -32,11 +52,33 @@ module.exports = (grunt)->
files: ['./data/**/*.cg']
tasks: ['mochaTest']
grunt.registerTask 'default', 'build'
# Compound Tasks ###################################################################################################
grunt.registerTask 'build', [ ]
grunt.registerTask 'build', 'build the project to be run from a local server',
['copy:data']
grunt.registerTask 'dist', [ 'test' ]
grunt.registerTask 'default', 'run tests to verify data files',
['test']
grunt.registerTask 'deploy:prod', 'deploy the project to production via CircleCI',
['script:deploy:prod']
grunt.registerTask 'deploy:staging', 'deploy the project to staging via CircleCI',
['script:deploy:staging']
grunt.registerTask 'dist', 'build the project to be run from Amazon S3',
['build', 'copy:build_to_dist', 'compress']
grunt.registerTask 'test', 'run unit tests',
['mochaTest']
grunt.registerTask 'upload:prod', 'upload the project to the production Amazon S3 environment',
['dist', 'script:s3_upload:prod']
grunt.registerTask 'upload:staging', 'upload the project the staging Amazon S3 environment',
['dist', 'script:s3_upload:staging']
# Code Tasks #######################################################################################################
grunt.registerTask 'use-local-deps', ->
grunt.file.mkdir './node_modules'
@@ -45,7 +87,25 @@ module.exports = (grunt)->
fs.symlinkSync '../../crafting-guide/', './node_modules/crafting-guide'
fs.symlinkSync '../../crafting-guide-common/', './node_modules/crafting-guide-common'
grunt.registerTask 'test', ['mochaTest']
# Script Tasks #####################################################################################################
grunt.registerTask 'script:deploy:prod', "deploy code by copying to the production branch", ->
done = this.async()
grunt.util.spawn cmd:'./scripts/deploy', args:['--production'], opts:{stdio:'inherit'}, (error)-> done(error)
grunt.registerTask 'script:deploy:staging', "deploy code by copying to the staging branch", ->
done = this.async()
grunt.util.spawn cmd:'./scripts/deploy', args:['--staging'], opts:{stdio:'inherit'}, (error)-> done(error)
grunt.registerTask 'script:s3_upload:prod', 'uploads all static content to S3', ->
done = this.async()
grunt.util.spawn cmd:'./scripts/s3_upload', args:['--prod'], opts:{stdio:'inherit'}, (error)-> done(error)
grunt.registerTask 'script:s3_upload:staging', 'uploads all static content to S3', ->
done = this.async()
grunt.util.spawn cmd:'./scripts/s3_upload', args:['--staging'], opts:{stdio:'inherit'}, (error)-> done(error)
# Command-Line Argument Processing #################################################################################
args = process.argv[..]
while args.length > 0