From 955dfcc4e1357d99df0af33884ae61c66a47dbde Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Sun, 30 Nov 2014 12:24:44 -0800 Subject: [PATCH] Separate meteor-publish task, and depend on latest spacejam --- Gruntfile.js | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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" -- 2.47.2