Gruntfile for bumping versions or anything else in the future
This commit is contained in:
parent
345f08ae9d
commit
449ccfe1fc
|
@ -1,4 +1,5 @@
|
||||||
.editorconfig
|
.editorconfig
|
||||||
.gitignore
|
.gitignore
|
||||||
Contributing.md
|
Contributing.md
|
||||||
bower.json
|
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",
|
".gitignore",
|
||||||
".npmignore",
|
".npmignore",
|
||||||
"Contributing.md",
|
"Contributing.md",
|
||||||
|
"Gruntfile.js",
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"package.json"
|
"package.json"
|
||||||
],
|
],
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "^0.4.4",
|
"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