Initial take on crafting algo Mk.III

This commit is contained in:
Andrew Miner
2016-09-25 13:14:42 -07:00
parent c0472b268d
commit 7377559f7b
35 changed files with 1660 additions and 1776 deletions
+3 -3
View File
@@ -132,7 +132,7 @@ module.exports = (grunt)->
options:
bail: true
color: true
reporter: 'dot'
reporter: 'list'
require: [
'coffee-script/register'
'./src/test_helper.coffee'
@@ -188,7 +188,7 @@ module.exports = (grunt)->
tasks: ['sass']
test:
files: ['./src/**/*.coffee', './src/**/*.js', './test/**/*.coffee']
tasks: ['test']
tasks: ['script:clear', 'test']
# Compound Tasks ###################################################################################################
@@ -277,7 +277,7 @@ module.exports = (grunt)->
grunt.registerTask 'script:clear', "clear the current terminal buffer", ->
done = this.async()
grunt.util.spawn cmd:'clear', opts:{stdio:'inherit'}, (error)-> done(error)
grunt.util.spawn cmd:'./scripts/clear_buffer', opts:{stdio:'inherit'}, (error)-> done(error)
grunt.registerTask 'script:deploy:prod', "deploy code by copying to the production branch", ->
done = this.async()