Ensure correct versions of packages are installed at build time.

This commit is contained in:
ccd0 2015-02-13 20:57:32 -08:00
parent 968f076a29
commit 4a6013afce

View File

@ -169,6 +169,8 @@ module.exports = (grunt) ->
""".split('\n').join('&&')
push:
command: 'git push origin --tags -f && git push origin --all'
npm:
command: 'npm install'
watch:
options:
@ -272,6 +274,7 @@ module.exports = (grunt) ->
grunt.config 'pkg', pkg
grunt.registerTask 'build', [
'shell:npm'
'concurrent:build'
]