@melonjs/debug-plugin 14.5.2 → 14.6.0

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/README.md CHANGED
@@ -46,5 +46,5 @@ Questions, need help ?
46
46
  -------------------------------------------------------------------------------
47
47
  If you need technical support, you can contact us through the following channels :
48
48
  * Forums: with melonJS 2 we moved to a new discourse [forum](https://melonjs.discourse.group), but we can still also find the previous one [here](http://www.html5gamedevs.com/forum/32-melonjs/)
49
- * Chat: come and chat with us on [discord](https://discord.gg/aur7JMk), or [gitter](https://gitter.im/melonjs/public)
49
+ * Chat: come and chat with us on [discord](https://discord.gg/aur7JMk)
50
50
  * we tried to keep our [wikipage](https://github.com/melonjs/melonJS/wiki) up-to-date with useful links, tutorials, and anything related melonJS.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * melonJS debug plugin - v14.5.2
2
+ * melonJS debug plugin - v14.6.0
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.5.2";
74
+ this.version = "14.6.0";
75
75
 
76
76
  // persistent
77
77
  this.isPersistent = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melonjs/debug-plugin",
3
- "version": "14.5.2",
3
+ "version": "14.6.0",
4
4
  "description": "melonJS debug plugin",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -38,6 +38,7 @@
38
38
  },
39
39
  "main": "dist/@melonjs/debug-plugin.js",
40
40
  "module": "dist/@melonjs/debug-plugin.js",
41
+ "types": "dist/index.d.ts",
41
42
  "sideEffects": false,
42
43
  "files": [
43
44
  "dist/@melonjs/debug-plugin.js",
@@ -47,7 +48,7 @@
47
48
  "LICENSE"
48
49
  ],
49
50
  "peerDependencies": {
50
- "melonjs": "^15.1.5"
51
+ "melonjs": "^15.1.6"
51
52
  },
52
53
  "devDependencies": {
53
54
  "@babel/eslint-parser": "^7.21.8",
@@ -57,16 +58,18 @@
57
58
  "@rollup/plugin-node-resolve": "^15.0.2",
58
59
  "@rollup/plugin-replace": "^5.0.2",
59
60
  "del-cli": "^5.0.0",
60
- "eslint": "^8.39.0",
61
- "eslint-plugin-jsdoc": "^43.1.1",
62
- "rollup": "^3.21.5",
61
+ "eslint": "^8.40.0",
62
+ "eslint-plugin-jsdoc": "^44.2.2",
63
+ "rollup": "^3.21.6",
63
64
  "rollup-plugin-bundle-size": "^1.0.3",
64
- "rollup-plugin-string": "^3.0.0"
65
+ "rollup-plugin-string": "^3.0.0",
66
+ "typescript": "^5.0.4"
65
67
  },
66
68
  "scripts": {
67
- "build": "npm run lint && rollup -c --silent",
69
+ "build": "npm run lint && rollup -c --silent && npm run types",
68
70
  "lint": "eslint src/**.js rollup.config.mjs",
69
71
  "prepublishOnly": "npm run build",
70
- "clean": "del-cli --force build/*.*"
72
+ "clean": "del-cli --force dist/*.*",
73
+ "types": "tsc"
71
74
  }
72
75
  }
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { utils, plugin } from "melonjs";
2
- import DebugPanel from "./debugPanel.js";
2
+ import DebugPanel from "./debugPanel";
3
3
 
4
4
  /**
5
5
  * @classdesc