Skip to content

Commit

Permalink
The Phaser Gruntfile is now split up into option tasks (thanks @xtian,
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed Apr 1, 2014
1 parent 3d92513 commit 1f32ef7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 83 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ Updated
* Fix for 'jagged' strokes on custom fonts. (thanks @nickryall, #677)
* The State.update function (and thus the update of any sub-classed Sprites or other objects) is now called before Stage, Tweens, Sound, Input, etc (#662)
* The Phaser jshint process is now running on Travis (thanks @xtian, #656)
* The Phaser Gruntfile is now split up into option tasks (thanks @xtian, #638)


New Features
Expand Down
81 changes: 0 additions & 81 deletions tasks/examples.js

This file was deleted.

5 changes: 3 additions & 2 deletions tasks/options/jshint.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ module.exports = {
'!src/Intro.js',
'!src/Outro.js',
'!src/pixi/**/*',
'!src/physics/p2/p2.js'
'!src/physics/p2/p2.js',
'!plugins/AStar.js'
],
options: { jshintrc: '.jshintrc' }
},
Expand All @@ -25,6 +26,6 @@ module.exports = {
},

options: {
force: true
force: (process.env.NODE_ENV !== 'test')
}
};

0 comments on commit 1f32ef7

Please sign in to comment.