Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #53 from raphamorim/animation
Browse files Browse the repository at this point in the history
Sprite Animation & Current Frame
  • Loading branch information
raphamorim authored Oct 29, 2016
2 parents 378a85c + 13d90b3 commit 4af5653
Show file tree
Hide file tree
Showing 12 changed files with 1,494 additions and 105 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
coverage/
.DS_Store
node_modules
*.html
9 changes: 9 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ module.exports = function(grunt) {
}
},

'watch-test': {
files: ['test/**/*.js'],
tasks: ['test'],
options: {
spawn: false,
}
},

watch: {
files: ['src/**/*.js'],
tasks: ['build'],
Expand All @@ -72,6 +80,7 @@ module.exports = function(grunt) {

grunt.registerTask("test", ["run:test"]);
grunt.registerTask("watch:dev", ["watch"]);
grunt.registerTask("watch:test", ["watch-test"]);
grunt.registerTask("build", ["concat"]);
grunt.registerTask("default", ["concat", "uglify:js", "test"]);
};
Loading

0 comments on commit 4af5653

Please sign in to comment.