Skip to content

Commit 415c18e

Browse files
authored
Merge pull request #31 from numbofathma/v1.1.0
Update all the dependencies to latest version
2 parents e8bdb00 + 7fcfcf9 commit 415c18e

File tree

10 files changed

+14193
-6511
lines changed

10 files changed

+14193
-6511
lines changed

.eslintignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
dist
22
node_modules
3-
assets
3+
assets
4+
webpack.*
5+
babel.*

.eslintrc.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"parser": "@typescript-eslint/parser",
1414
"parserOptions": {
1515
"project": "./tsconfig.json",
16-
"ecmaVersion": 2018,
16+
"ecmaVersion": 2023,
1717
"sourceType": "module"
1818
},
1919
"plugins": [
@@ -26,9 +26,6 @@
2626
".ts",
2727
".js"
2828
]
29-
},
30-
"webpack": {
31-
"config": "webpack.dev.config.js"
3229
}
3330
}
3431
},
@@ -61,4 +58,4 @@
6158
],
6259
"no-nested-ternary": "off"
6360
}
64-
}
61+
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Phaser.io CE 2.15.0, Howler.js 2.1.3, TypeScript and Webpack 4.43, play nice together.
1+
# Phaser.io CE 2.20.0, Howler.js 2.2.3, TypeScript and Webpack 5.75, play nice together.
22
#### A bootstrap project to create games with Phaser.io, Howler.js, TypeScript and Webpack.
33

44
## Features
55
- Uses the latest Phaser CE
66
- Uses Howler (an awesome audio library) - can be easily removed if one does not use it
77
- TypeScript linter that checks TypeScript code for readability, maintainability, and functionality errors
8-
- Webpack 4 ready
8+
- Webpack 5 ready
99
- Built-in commands to easily deploy code your code (minify, uglify, comments removal, etc)
1010
- Other awesome stuff!
1111

@@ -80,4 +80,4 @@ Special thanks to:
8080
<a href="https://github.com/dimorphic/" target="_blank" title="dimorphic's Profile">dimorphic</a>
8181

8282
<br />
83-
Made with <3 in Romania
83+
Made with <3 in Romania

babel.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
presets: ["@babel/preset-typescript"],
3+
plugins: [
4+
["@babel/plugin-proposal-class-properties"],
5+
["@babel/plugin-transform-typescript"],
6+
],
7+
};

0 commit comments

Comments
 (0)