Skip to content

Commit 265501b

Browse files
committed
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.
1 parent 9b4bb1b commit 265501b

9 files changed

Lines changed: 5 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/
318318
* TypeScript definitions fixes and updates (thanks )
319319
* Docs typo fixes (thanks )
320320
* The InputHandler.flagged property has been removed. It was never used internally, or exposed via the API, so was just overhead.
321+
* 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.
321322

322323
### Bug Fixes
323324

File renamed without changes.

tasks/jsdoc-conf.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"./src/physics/",
1919
"./src/plugins/",
2020
"./src/sound/",
21-
"./src/system/",
2221
"./src/tilemap/",
2322
"./src/time/",
2423
"./src/tween/",

tasks/jsdocexportjson-conf.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"./src/particles/",
1818
"./src/physics/",
1919
"./src/sound/",
20-
"./src/system/",
2120
"./src/tilemap/",
2221
"./src/time/",
2322
"./src/tween/",

tasks/manifests/dom.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[
2-
"src/system/DOM.js"
2+
"src/utils/DOM.js"
33
]

tasks/manifests/system.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[
2-
"src/system/Device.js",
3-
"src/system/Canvas.js",
4-
"src/system/RequestAnimationFrame.js"
2+
"src/utils/Device.js",
3+
"src/utils/Canvas.js",
4+
"src/utils/RequestAnimationFrame.js"
55
]

0 commit comments

Comments
 (0)