@melonjs/debug-plugin 14.8.1 → 14.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/@melonjs/debug-plugin.js +15 -15
- package/package.json +11 -11
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* melonJS debug plugin - v14.8.
|
|
2
|
+
* melonJS debug plugin - v14.8.2
|
|
3
3
|
* http://www.melonjs.org
|
|
4
4
|
* @melonjs/debug-plugin is licensed under the MIT License.
|
|
5
5
|
* http://www.opensource.org/licenses/mit-license
|
|
6
|
-
* @copyright (C) 2011 -
|
|
6
|
+
* @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd)
|
|
7
7
|
*/
|
|
8
|
-
import { Renderable, video, utils, BitmapText, Rect, event, Container, Entity, Text, Camera2d, ImageLayer,
|
|
8
|
+
import { Renderable, video, utils, BitmapText, Rect, event, plugin, Container, Entity, Text, Camera2d, ImageLayer, game, input, timer, collision, Math, pool } from 'melonjs';
|
|
9
9
|
|
|
10
10
|
var name = "@melonjs/debug-plugin";
|
|
11
|
-
var version = "14.8.
|
|
11
|
+
var version = "14.8.2";
|
|
12
12
|
var description = "melonJS debug plugin";
|
|
13
13
|
var homepage = "https://github.com/melonjs/debug-plugin#readme";
|
|
14
14
|
var type = "module";
|
|
@@ -57,23 +57,23 @@ var files = [
|
|
|
57
57
|
"LICENSE"
|
|
58
58
|
];
|
|
59
59
|
var peerDependencies = {
|
|
60
|
-
melonjs: "
|
|
60
|
+
melonjs: ">=15.12"
|
|
61
61
|
};
|
|
62
62
|
var devDependencies = {
|
|
63
|
-
"@babel/eslint-parser": "^7.
|
|
64
|
-
"@babel/plugin-syntax-import-assertions": "^7.
|
|
65
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
63
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
64
|
+
"@babel/plugin-syntax-import-assertions": "^7.23.3",
|
|
65
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
66
66
|
"@rollup/plugin-image": "^3.0.3",
|
|
67
|
-
"@rollup/plugin-json": "^6.0.
|
|
67
|
+
"@rollup/plugin-json": "^6.0.7",
|
|
68
68
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
69
|
-
"@rollup/plugin-replace": "^5.0.
|
|
69
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
70
70
|
"del-cli": "^5.1.0",
|
|
71
|
-
eslint: "^8.
|
|
72
|
-
"eslint-plugin-jsdoc": "^
|
|
73
|
-
rollup: "^4.
|
|
71
|
+
eslint: "^8.56.0",
|
|
72
|
+
"eslint-plugin-jsdoc": "^48.0.4",
|
|
73
|
+
rollup: "^4.9.6",
|
|
74
74
|
"rollup-plugin-bundle-size": "^1.0.3",
|
|
75
75
|
"rollup-plugin-string": "^3.0.0",
|
|
76
|
-
typescript: "^5.
|
|
76
|
+
typescript: "^5.3.3"
|
|
77
77
|
};
|
|
78
78
|
var scripts = {
|
|
79
79
|
build: "npm run lint && rollup -c --silent && npm run types",
|
|
@@ -169,7 +169,7 @@ class DebugPanel extends Renderable {
|
|
|
169
169
|
this.name = "debugPanel";
|
|
170
170
|
|
|
171
171
|
// the debug panel version
|
|
172
|
-
this.version = "14.8.
|
|
172
|
+
this.version = "14.8.2";
|
|
173
173
|
|
|
174
174
|
// persistent
|
|
175
175
|
this.isPersistent = true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@melonjs/debug-plugin",
|
|
3
|
-
"version": "14.8.
|
|
3
|
+
"version": "14.8.2",
|
|
4
4
|
"description": "melonJS debug plugin",
|
|
5
5
|
"homepage": "https://github.com/melonjs/debug-plugin#readme",
|
|
6
6
|
"type": "module",
|
|
@@ -49,23 +49,23 @@
|
|
|
49
49
|
"LICENSE"
|
|
50
50
|
],
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"melonjs": "
|
|
52
|
+
"melonjs": ">=15.12"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@babel/eslint-parser": "^7.
|
|
56
|
-
"@babel/plugin-syntax-import-assertions": "^7.
|
|
57
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
55
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
56
|
+
"@babel/plugin-syntax-import-assertions": "^7.23.3",
|
|
57
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
58
58
|
"@rollup/plugin-image": "^3.0.3",
|
|
59
|
-
"@rollup/plugin-json": "^6.0.
|
|
59
|
+
"@rollup/plugin-json": "^6.0.7",
|
|
60
60
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
61
|
-
"@rollup/plugin-replace": "^5.0.
|
|
61
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
62
62
|
"del-cli": "^5.1.0",
|
|
63
|
-
"eslint": "^8.
|
|
64
|
-
"eslint-plugin-jsdoc": "^
|
|
65
|
-
"rollup": "^4.
|
|
63
|
+
"eslint": "^8.56.0",
|
|
64
|
+
"eslint-plugin-jsdoc": "^48.0.4",
|
|
65
|
+
"rollup": "^4.9.6",
|
|
66
66
|
"rollup-plugin-bundle-size": "^1.0.3",
|
|
67
67
|
"rollup-plugin-string": "^3.0.0",
|
|
68
|
-
"typescript": "^5.
|
|
68
|
+
"typescript": "^5.3.3"
|
|
69
69
|
},
|
|
70
70
|
"scripts": {
|
|
71
71
|
"build": "npm run lint && rollup -c --silent && npm run types",
|