The src/system folder has been removed and all files relocated to the src/utils folder. This doesn't change anything from an API point of view, but did change the grunt build scripts slightly.

This commit is contained in:
Richard Davey 2016-07-11 22:38:09 +01:00
parent 9b4bb1bdd8
commit 265501b4af
9 changed files with 5 additions and 6 deletions

View file

@ -318,6 +318,7 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/
* TypeScript definitions fixes and updates (thanks )
* Docs typo fixes (thanks )
* The InputHandler.flagged property has been removed. It was never used internally, or exposed via the API, so was just overhead.
* The src/system folder has been removed and all files relocated to the src/utils folder. This doesn't change anything from an API point of view, but did change the grunt build scripts slightly.
### Bug Fixes

View file

@ -18,7 +18,6 @@
"./src/physics/",
"./src/plugins/",
"./src/sound/",
"./src/system/",
"./src/tilemap/",
"./src/time/",
"./src/tween/",

View file

@ -17,7 +17,6 @@
"./src/particles/",
"./src/physics/",
"./src/sound/",
"./src/system/",
"./src/tilemap/",
"./src/time/",
"./src/tween/",

View file

@ -1,3 +1,3 @@
[
"src/system/DOM.js"
"src/utils/DOM.js"
]

View file

@ -1,5 +1,5 @@
[
"src/system/Device.js",
"src/system/Canvas.js",
"src/system/RequestAnimationFrame.js"
"src/utils/Device.js",
"src/utils/Canvas.js",
"src/utils/RequestAnimationFrame.js"
]