Skip to content

Commit

Permalink
Update dependencies, add release tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
gamtiq committed Jul 18, 2016
1 parent c4603c8 commit 6f5f20c
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 9 deletions.
15 changes: 15 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 79,17 @@ module.exports = function(grunt) {

mochacli: {
all: {}
},

bump: {
options: {
files: ["package.json", "bower.json", "component.json"],
commitMessage: "Release version %VERSION%",
commitFiles: ["-a"],
tagName: "%VERSION%",
tagMessage: "Version %VERSION%",
pushTo: "origin"
}
}

});
Expand All @@ -92,4 103,8 @@ module.exports = function(grunt) {
grunt.registerTask("test", ["mochacli"]);
grunt.registerTask("default", ["jshint", "test"]);
grunt.registerTask("all", ["default", "build", "doc"]);

grunt.registerTask("release", ["bump"]);
grunt.registerTask("release-minor", ["bump:minor"]);
grunt.registerTask("release-major", ["bump:major"]);
};
2 changes: 1 addition & 1 deletion dist/chronoman.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion doc/chronoman.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 742,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a>

on 2016-07-12T22:08:43 03:00
on 2016-07-19T00:18:33 03:00

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/classes.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 202,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a>

on 2016-07-12T22:08:43 03:00
on 2016-07-19T00:18:33 03:00

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 188,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a>

on 2016-07-12T22:08:43 03:00
on 2016-07-19T00:18:33 03:00

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/module-chronoman-Timer.html
Original file line number Diff line number Diff line change
Expand Up @@ -4569,7 4569,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a>

on 2016-07-12T22:08:43 03:00
on 2016-07-19T00:18:33 03:00

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/module-chronoman.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 214,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a>

on 2016-07-12T22:08:43 03:00
on 2016-07-19T00:18:33 03:00

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
2 changes: 1 addition & 1 deletion doc/modules.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 202,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a>

on 2016-07-12T22:08:43 03:00
on 2016-07-19T00:18:33 03:00

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 33,11 @@
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"grunt": "~0.4.1",
"grunt": "~1.0.0",
"grunt-babel": "^6.0.0",
"grunt-bump": "^0.8.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "~0.2.4",
"grunt-contrib-uglify": "~1.0.0",
"grunt-jsdoc": "~2.1.0",
"grunt-mocha-cli": "^2.1.0",
"grunt-umd": "~1.7.0",
Expand Down

0 comments on commit 6f5f20c

Please sign in to comment.