Skip to content

Commit

Permalink
Preparing version 1.0.6 (clean task added).
Browse files Browse the repository at this point in the history
  • Loading branch information
rmariuzzo committed Dec 12, 2014
1 parent 6e270e0 commit fcb7234
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ module.exports = function (grunt) {

pkg: grunt.file.readJSON('package.json'),

clean: ['dist'],

watch: {
scripts: {
files: [
Expand Down Expand Up @@ -64,7 +66,7 @@ module.exports = function (grunt) {
});

grunt.registerTask('default', ['jshint', 'watch']);
grunt.registerTask('build', ['jshint', 'jasmine', 'uglify']);
grunt.registerTask('build', ['clean', 'jshint', 'jasmine', 'uglify']);
grunt.registerTask('test', ['jasmine']);
grunt.registerTask('travis', ['jshint', 'jasmine']);

Expand Down

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "checkboxes.js",
"version": "1.0.5",
"version": "1.0.6",
"homepage": "https://github.com/rmariuzzo/checkboxes.js",
"keywords": "checkbox checkboxes",
"license": "MIT",
Expand All @@ -11,6 +11,7 @@
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jasmine": "~0.6.5",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.2.2",
Expand Down

0 comments on commit fcb7234

Please sign in to comment.