From 4a6013afceab25dfc6e6afb831d3be12f635abcc Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 13 Feb 2015 20:57:32 -0800 Subject: [PATCH] Ensure correct versions of packages are installed at build time. --- Gruntfile.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index a6cd45ab8..7dc5d529a 100755 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -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' ]