@melonjs/debug-plugin 14.6.2 → 14.6.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,5 +1,5 @@
1
1
  /*!
2
- * melonJS debug plugin - v14.6.2
2
+ * melonJS debug plugin - v14.6.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
@@ -71,7 +71,7 @@ class DebugPanel extends Renderable {
71
71
  this.name = "debugPanel";
72
72
 
73
73
  // the debug panel version
74
- this.version = "14.6.2";
74
+ this.version = "14.6.3";
75
75
 
76
76
  // persistent
77
77
  this.isPersistent = true;
@@ -588,16 +588,16 @@ class DebugPanel extends Renderable {
588
588
  * &bull; the hitbox or bounding box for all objects <br>
589
589
  * &bull; current velocity vector <br>
590
590
  * &bull; quadtree spatial visualization <br>
591
- * @augments plugin.Base
591
+ * @augments plugin.BasePlugin
592
592
  */
593
- class DebugPanelPlugin extends plugin.Base {
593
+ class DebugPanelPlugin extends plugin.BasePlugin {
594
594
 
595
595
  constructor(debugToggle) {
596
596
  // call the super constructor
597
597
  super();
598
598
 
599
599
  // minimum melonJS version expected
600
- this.version = "15.1.5";
600
+ this.version = "15.2.0";
601
601
 
602
602
  this.panel = new DebugPanel(debugToggle);
603
603
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melonjs/debug-plugin",
3
- "version": "14.6.2",
3
+ "version": "14.6.3",
4
4
  "description": "melonJS debug plugin",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -48,7 +48,7 @@
48
48
  "LICENSE"
49
49
  ],
50
50
  "peerDependencies": {
51
- "melonjs": "^15.1.6"
51
+ "melonjs": "^15.2.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@babel/eslint-parser": "^7.21.8",
@@ -59,7 +59,7 @@
59
59
  "@rollup/plugin-replace": "^5.0.2",
60
60
  "del-cli": "^5.0.0",
61
61
  "eslint": "^8.40.0",
62
- "eslint-plugin-jsdoc": "^44.2.2",
62
+ "eslint-plugin-jsdoc": "^44.2.3",
63
63
  "rollup": "^3.21.6",
64
64
  "rollup-plugin-bundle-size": "^1.0.3",
65
65
  "rollup-plugin-string": "^3.0.0",
package/src/index.js CHANGED
@@ -24,16 +24,16 @@ import { DebugPanel } from "./debugPanel";
24
24
  * &bull; the hitbox or bounding box for all objects <br>
25
25
  * &bull; current velocity vector <br>
26
26
  * &bull; quadtree spatial visualization <br>
27
- * @augments plugin.Base
27
+ * @augments plugin.BasePlugin
28
28
  */
29
- export class DebugPanelPlugin extends plugin.Base {
29
+ export class DebugPanelPlugin extends plugin.BasePlugin {
30
30
 
31
31
  constructor(debugToggle) {
32
32
  // call the super constructor
33
33
  super();
34
34
 
35
35
  // minimum melonJS version expected
36
- this.version = "15.1.5";
36
+ this.version = "15.2.0";
37
37
 
38
38
  this.panel = new DebugPanel(debugToggle);
39
39