Skip to content

Commit 1f32ef7

Browse files
committed
The Phaser Gruntfile is now split up into option tasks (thanks @xtian, phaserjs#638)
1 parent 3d92513 commit 1f32ef7

3 files changed

Lines changed: 4 additions & 83 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ Updated
7272
* Fix for 'jagged' strokes on custom fonts. (thanks @nickryall, #677)
7373
* 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)
7474
* The Phaser jshint process is now running on Travis (thanks @xtian, #656)
75+
* The Phaser Gruntfile is now split up into option tasks (thanks @xtian, #638)
7576

7677

7778
New Features

tasks/examples.js

Lines changed: 0 additions & 81 deletions
This file was deleted.

tasks/options/jshint.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ module.exports = {
66
'!src/Intro.js',
77
'!src/Outro.js',
88
'!src/pixi/**/*',
9-
'!src/physics/p2/p2.js'
9+
'!src/physics/p2/p2.js',
10+
'!plugins/AStar.js'
1011
],
1112
options: { jshintrc: '.jshintrc' }
1213
},
@@ -25,6 +26,6 @@ module.exports = {
2526
},
2627

2728
options: {
28-
force: true
29+
force: (process.env.NODE_ENV !== 'test')
2930
}
3031
};

0 commit comments

Comments
 (0)