Gruntfile for bumping versions or anything else in the future
This commit is contained in:
parent
345f08ae9d
commit
449ccfe1fc
|
@ -2,3 +2,4 @@
|
|||
.gitignore
|
||||
Contributing.md
|
||||
bower.json
|
||||
Gruntfile.js
|
|
@ -0,0 +1,17 @@
|
|||
module.exports = function(grunt) {
|
||||
|
||||
require('load-grunt-tasks')(grunt);
|
||||
|
||||
grunt.initConfig({
|
||||
bump: {
|
||||
options: {
|
||||
files: ['package.json', 'bower.json'],
|
||||
commitFiles: ['package.json', 'bower.json'],
|
||||
pushTo: 'origin'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
grunt.registerTask('default', ['bump']);
|
||||
|
||||
};
|
|
@ -8,6 +8,7 @@
|
|||
".gitignore",
|
||||
".npmignore",
|
||||
"Contributing.md",
|
||||
"Gruntfile.js",
|
||||
"node_modules",
|
||||
"package.json"
|
||||
],
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"grunt": "^0.4.4",
|
||||
"grunt-bump": "0.0.13"
|
||||
"grunt-bump": "0.0.13",
|
||||
"load-grunt-tasks": "^0.4.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue