]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Remove publish-meteor from release task
authorIskren Chernev <iskren.chernev@gmail.com>
Wed, 31 Dec 2014 16:42:12 +0000 (18:42 +0200)
committerIskren Chernev <iskren.chernev@gmail.com>
Wed, 31 Dec 2014 16:42:12 +0000 (18:42 +0200)
Gruntfile.js

index 2d1654cd518281bd65c0163cb873acbaaafc7800..c8adb4adb94a100602fdd05a1b3d454fcf1950cd 100644 (file)
@@ -246,12 +246,11 @@ module.exports = function (grunt) {
         'test:node'
     ]);
 
-    grunt.registerTask('publish-meteor', ['exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup']);
+    grunt.registerTask('meteor-publish', ['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',
-        'publish-meteor'
+        'component', 'uglify:main'
     ]);
 };