From: Dan Dascalescu Date: Sun, 30 Nov 2014 20:24:44 +0000 (-0800) Subject: Separate meteor-publish task, and depend on latest spacejam X-Git-Tag: 2.9.0~31^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=955dfcc4e1357d99df0af33884ae61c66a47dbde;p=thirdparty%2Fmoment.git Separate meteor-publish task, and depend on latest spacejam --- diff --git a/Gruntfile.js b/Gruntfile.js index 1da8fb0ce..2d1654cd5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -246,10 +246,12 @@ module.exports = function (grunt) { 'test:node' ]); + grunt.registerTask('publish-meteor', ['exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup']); + // Task to be run when releasing a new version grunt.registerTask('release', [ 'jshint', 'nodeunit', 'concat', 'embedLocales', 'component', 'uglify:main', - 'exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup' + 'publish-meteor' ]); }; diff --git a/package.json b/package.json index bf3343def..7ca38de5a 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "karma-firefox-launcher": "latest", "karma-nodeunit": "latest", "karma-sauce-launcher": "latest", - "spacejam": "^1.1.1" + "spacejam": "latest" }, "scripts": { "test": "grunt test:node"