Initial take on crafting algo Mk.III
This commit is contained in:
+3
-3
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user