]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Separate meteor-publish task, and depend on latest spacejam 2073/head
authorDan Dascalescu <ddascalescu+github@gmail.com>
Sun, 30 Nov 2014 20:24:44 +0000 (12:24 -0800)
committerDan Dascalescu <ddascalescu+github@gmail.com>
Sun, 30 Nov 2014 20:24:44 +0000 (12:24 -0800)
Gruntfile.js
package.json

index 1da8fb0cef97b824695a4e871da27ed333bceba5..2d1654cd518281bd65c0163cb873acbaaafc7800 100644 (file)
@@ -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'
     ]);
 };
index bf3343defc8f7329ac6c25b9fb32afce6cded016..7ca38de5a2ae5678843aa714f3dcf452e341a1b4 100644 (file)
@@ -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"