Skip to content

Commit

Permalink
Adding npm shrinkwrap during release
Browse files Browse the repository at this point in the history
  • Loading branch information
ErisDS committed Feb 27, 2015
1 parent ab2c57e commit 65fe737
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gruntfile.js
Expand Up @@ -339,6 +339,10 @@ var _ = require('lodash'),
coverage: {
command: 'node ' + mochaPath + ' --timeout 15000 --reporter html-cov > coverage.html ' +
path.resolve(cwd + '/core/test/blanket_coverage.js')
},

shrinkwrap: {
command: 'npm shrinkwrap'
}
},

Expand Down Expand Up @@ -1167,7 +1171,8 @@ var _ = require('lodash'),
' - Copy files to release-folder/#/#{version} directory\n' +
' - Clean out unnecessary files (travis, .git*, etc)\n' +
' - Zip files in release-folder to dist-folder/#{version} directory',
['init', 'concat:prod', 'copy:prod', 'emberBuildProd', 'uglify:release', 'clean:release', 'copy:release', 'compress:release']);
['init', 'concat:prod', 'copy:prod', 'emberBuildProd', 'uglify:release', 'clean:release',
'shell:shrinkwrap', 'copy:release', 'compress:release']);
};

// Export the configuration
Expand Down

0 comments on commit 65fe737

Please sign in to comment.