Skip to content

Commit

Permalink
build system now requires Grunt 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
warpech committed Feb 25, 2013
1 parent 408f29d commit 3ebed1d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Bugfix:
- scrolls to top of table on any key press if the top is not on the screen ([#348](https://github.com/warpech/jquery-handsontable/issues/348))

Other:
- build system now requires Grunt 0.4.0

## [0.8.5](https://github.com/warpech/jquery-handsontable/tree/v0.8.5) (Feb 18, 2013)

Bugfix:
Expand Down
8 changes: 5 additions & 3 deletions grunt.js → Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ module.exports = function (grunt) {
}
},
watch: {
files: ['src/*.js', 'src/editors/*.js', 'src/plugins/*.js', 'src/renderers/*.js', 'src/3rdparty/*.js', 'src/css/*.css', 'lib/*.js'],
tasks: 'replace concat clean'
files: ['src/*', 'src/editors/*', 'src/plugins/*', 'src/renderers/*', 'src/3rdparty/*', 'src/css/*', 'lib/*'],
tasks: ['replace', 'concat', 'clean']
},
clean: {
dist: ['tmp']
Expand All @@ -101,8 +101,10 @@ module.exports = function (grunt) {
});

// Default task.
grunt.registerTask('default', 'replace concat clean');
grunt.registerTask('default', ['replace', 'concat', 'clean']);

grunt.loadNpmTasks('grunt-replace');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
};
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
"author": "Marcin Warpechowski <[email protected]>",
"version": "0.8.5",
"devDependencies": {
"grunt-replace": "~0.3.1",
"grunt-contrib-clean": "~0.3.0"
"grunt": "~0.4.0",
"grunt-replace": "~0.3.2",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-concat": "~0.1.0",
"grunt-contrib-watch": "~0.2.0"
}
}

0 comments on commit 3ebed1d

Please sign in to comment.