Skip to content

Commit c24bafe

Browse files
Exclude index.js from the browser lib.
1 parent 879d6f0 commit c24bafe

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

browser/phaserjs_editor_scripts_base/index.js

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

build-browser.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ function processJSFiles(fromFolder, toFolder) {
2222

2323
for (const file of files) {
2424

25+
if (file === "index.js") {
26+
27+
continue;
28+
}
29+
2530
const from = path.join(fromFolder, file);
2631
const to = path.join(toFolder, file);
2732

0 commit comments

Comments
 (0)