From 1436fafcb604e1eff8b160176b04216bf6c993b1 Mon Sep 17 00:00:00 2001 From: Boris Staal Date: Thu, 11 Jul 2013 00:03:02 +0700 Subject: [PATCH] Release command added --- Gruntfile.coffee | 11 +++++++++++ package.json | 7 ++++++- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 Gruntfile.coffee diff --git a/Gruntfile.coffee b/Gruntfile.coffee new file mode 100644 index 0000000..fd81bc0 --- /dev/null +++ b/Gruntfile.coffee @@ -0,0 +1,11 @@ +module.exports = (grunt) -> + + grunt.loadNpmTasks 'grunt-release' + + grunt.initConfig + release: + options: + bump: false + add: false + commit: false + push: false \ No newline at end of file diff --git a/package.json b/package.json index ff7fcf3..c325afd 100644 --- a/package.json +++ b/package.json @@ -25,5 +25,10 @@ }, "keywords": [ "gruntplugin" - ] + ], + "license": "MIT", + "devDependencies": { + "grunt": "~0.4.1", + "grunt-release": "~0.3.5" + } } \ No newline at end of file