summaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2013-08-24 13:10:51 -0500
committerkpdecker <kpdecker@gmail.com>2013-08-24 13:28:39 -0500
commit7efa75684e471726101a5724cb5c48d5dc4e1eb0 (patch)
tree59c788181ca9d7e42b8348d7969874e9b24e2688 /Gruntfile.js
parent08989cfcdda0408e21a774e60044ebce87695422 (diff)
downloadhandlebars.js-7efa75684e471726101a5724cb5c48d5dc4e1eb0.zip
handlebars.js-7efa75684e471726101a5724cb5c48d5dc4e1eb0.tar.gz
handlebars.js-7efa75684e471726101a5724cb5c48d5dc4e1eb0.tar.bz2
Version update task
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 8fed742..a347600 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -88,5 +88,6 @@ module.exports = function(grunt) {
});
});
- grunt.registerTask('default', ['jshint', 'parser', 'dist-dir', 'concat', 'uglify', 'test']);
+ grunt.registerTask('build', ['jshint', 'parser', 'dist-dir', 'concat', 'uglify', 'test']);
+ grunt.registerTask('default', 'build');
};