Skip to content

Commit 49bc8b9

Browse files
committed
fix peerDependencies requirements and update NPM dependencies
1 parent 11babf3 commit 49bc8b9

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

dist/@melonjs/debug-plugin.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*!
2-
* melonJS debug plugin - v14.8.1
2+
* melonJS debug plugin - v14.8.2
33
* http://www.melonjs.org
44
* @melonjs/debug-plugin is licensed under the MIT License.
55
* http://www.opensource.org/licenses/mit-license
6-
* @copyright (C) 2011 - 2023 Olivier Biot (AltByte Pte Ltd)
6+
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
77
*/
8-
import { Renderable, video, utils, BitmapText, Rect, event, Container, Entity, Text, Camera2d, ImageLayer, plugin, game, input, timer, collision, Math, pool } from 'melonjs';
8+
import { Renderable, video, utils, BitmapText, Rect, event, plugin, Container, Entity, Text, Camera2d, ImageLayer, game, input, timer, collision, Math, pool } from 'melonjs';
99

1010
var name = "@melonjs/debug-plugin";
11-
var version = "14.8.1";
11+
var version = "14.8.2";
1212
var description = "melonJS debug plugin";
1313
var homepage = "https://github.com/melonjs/debug-plugin#readme";
1414
var type = "module";
@@ -57,23 +57,23 @@ var files = [
5757
"LICENSE"
5858
];
5959
var peerDependencies = {
60-
melonjs: "^15.12.0"
60+
melonjs: ">=15.12"
6161
};
6262
var devDependencies = {
63-
"@babel/eslint-parser": "^7.22.15",
64-
"@babel/plugin-syntax-import-assertions": "^7.22.5",
65-
"@rollup/plugin-commonjs": "^25.0.5",
63+
"@babel/eslint-parser": "^7.23.10",
64+
"@babel/plugin-syntax-import-assertions": "^7.23.3",
65+
"@rollup/plugin-commonjs": "^25.0.7",
6666
"@rollup/plugin-image": "^3.0.3",
67-
"@rollup/plugin-json": "^6.0.1",
67+
"@rollup/plugin-json": "^6.0.7",
6868
"@rollup/plugin-node-resolve": "^15.2.3",
69-
"@rollup/plugin-replace": "^5.0.3",
69+
"@rollup/plugin-replace": "^5.0.5",
7070
"del-cli": "^5.1.0",
71-
eslint: "^8.51.0",
72-
"eslint-plugin-jsdoc": "^46.8.2",
73-
rollup: "^4.0.2",
71+
eslint: "^8.56.0",
72+
"eslint-plugin-jsdoc": "^48.0.4",
73+
rollup: "^4.9.6",
7474
"rollup-plugin-bundle-size": "^1.0.3",
7575
"rollup-plugin-string": "^3.0.0",
76-
typescript: "^5.2.2"
76+
typescript: "^5.3.3"
7777
};
7878
var scripts = {
7979
build: "npm run lint && rollup -c --silent && npm run types",
@@ -169,7 +169,7 @@ class DebugPanel extends Renderable {
169169
this.name = "debugPanel";
170170

171171
// the debug panel version
172-
this.version = "14.8.1";
172+
this.version = "14.8.2";
173173

174174
// persistent
175175
this.isPersistent = true;

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@melonjs/debug-plugin",
3-
"version": "14.8.1",
3+
"version": "14.8.2",
44
"description": "melonJS debug plugin",
55
"homepage": "https://github.com/melonjs/debug-plugin#readme",
66
"type": "module",
@@ -49,23 +49,23 @@
4949
"LICENSE"
5050
],
5151
"peerDependencies": {
52-
"melonjs": "^15.12.0"
52+
"melonjs": ">=15.12"
5353
},
5454
"devDependencies": {
55-
"@babel/eslint-parser": "^7.22.15",
56-
"@babel/plugin-syntax-import-assertions": "^7.22.5",
57-
"@rollup/plugin-commonjs": "^25.0.5",
55+
"@babel/eslint-parser": "^7.23.10",
56+
"@babel/plugin-syntax-import-assertions": "^7.23.3",
57+
"@rollup/plugin-commonjs": "^25.0.7",
5858
"@rollup/plugin-image": "^3.0.3",
59-
"@rollup/plugin-json": "^6.0.1",
59+
"@rollup/plugin-json": "^6.0.7",
6060
"@rollup/plugin-node-resolve": "^15.2.3",
61-
"@rollup/plugin-replace": "^5.0.3",
61+
"@rollup/plugin-replace": "^5.0.5",
6262
"del-cli": "^5.1.0",
63-
"eslint": "^8.51.0",
64-
"eslint-plugin-jsdoc": "^46.8.2",
65-
"rollup": "^4.0.2",
63+
"eslint": "^8.56.0",
64+
"eslint-plugin-jsdoc": "^48.0.4",
65+
"rollup": "^4.9.6",
6666
"rollup-plugin-bundle-size": "^1.0.3",
6767
"rollup-plugin-string": "^3.0.0",
68-
"typescript": "^5.2.2"
68+
"typescript": "^5.3.3"
6969
},
7070
"scripts": {
7171
"build": "npm run lint && rollup -c --silent && npm run types",

0 commit comments

Comments
 (0)