@melonjs/debug-plugin 14.8.1 → 14.8.3

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.
@@ -1,14 +1,14 @@
1
1
  /*!
2
- * melonJS debug plugin - v14.8.1
2
+ * melonJS debug plugin - v14.8.3
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 - 2023 Olivier Biot (AltByte Pte Ltd)
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, 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';
9
9
 
10
10
  var name = "@melonjs/debug-plugin";
11
- var version = "14.8.1";
11
+ var version = "14.8.3";
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: "^15.12.0"
60
+ melonjs: ">=15.12.0"
61
61
  };
62
62
  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",
66
66
  "@rollup/plugin-image": "^3.0.3",
67
- "@rollup/plugin-json": "^6.0.1",
67
+ "@rollup/plugin-json": "^6.0.7",
68
68
  "@rollup/plugin-node-resolve": "^15.2.3",
69
- "@rollup/plugin-replace": "^5.0.3",
69
+ "@rollup/plugin-replace": "^5.0.5",
70
70
  "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.6",
73
+ rollup: "^4.10.0",
74
74
  "rollup-plugin-bundle-size": "^1.0.3",
75
75
  "rollup-plugin-string": "^3.0.0",
76
- typescript: "^5.2.2"
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.1";
172
+ this.version = "14.8.3";
173
173
 
174
174
  // persistent
175
175
  this.isPersistent = true;
@@ -691,7 +691,7 @@ class DebugPanelPlugin extends plugin.BasePlugin {
691
691
  super();
692
692
 
693
693
  // minimum melonJS version expected
694
- this.version = peerDependencies["melonjs"];
694
+ this.version = "15.12.0";
695
695
 
696
696
  // hello world
697
697
  console.log(`${name} ${version} | ${homepage}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melonjs/debug-plugin",
3
- "version": "14.8.1",
3
+ "version": "14.8.3",
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": "^15.12.0"
52
+ "melonjs": ">=15.12.0"
53
53
  },
54
54
  "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",
58
58
  "@rollup/plugin-image": "^3.0.3",
59
- "@rollup/plugin-json": "^6.0.1",
59
+ "@rollup/plugin-json": "^6.0.7",
60
60
  "@rollup/plugin-node-resolve": "^15.2.3",
61
- "@rollup/plugin-replace": "^5.0.3",
61
+ "@rollup/plugin-replace": "^5.0.5",
62
62
  "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.6",
65
+ "rollup": "^4.10.0",
66
66
  "rollup-plugin-bundle-size": "^1.0.3",
67
67
  "rollup-plugin-string": "^3.0.0",
68
- "typescript": "^5.2.2"
68
+ "typescript": "^5.3.3"
69
69
  },
70
70
  "scripts": {
71
71
  "build": "npm run lint && rollup -c --silent && npm run types",
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { utils, plugin, input, event } from "melonjs";
2
- import { name, version, homepage, peerDependencies } from "../package.json";
2
+ import { name, version, homepage } from "../package.json";
3
3
  import { DebugPanel } from "./debugPanel";
4
4
 
5
5
  /**
@@ -37,7 +37,7 @@ export class DebugPanelPlugin extends plugin.BasePlugin {
37
37
  super();
38
38
 
39
39
  // minimum melonJS version expected
40
- this.version = peerDependencies["melonjs"];
40
+ this.version = "15.12.0";
41
41
 
42
42
  // hello world
43
43
  console.log(`${name} ${version} | ${homepage}`);