@melonjs/debug-plugin 14.4.4 → 14.4.5
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 +1 -1
- package/dist/melonjs-debug-plugin.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Then import and instantiante the debug plugin in your project. For example:
|
|
|
12
12
|
import { utils, plugin } from 'melonjs';
|
|
13
13
|
// initialize the debug plugin in development mode.
|
|
14
14
|
if (typeof process !== "undefined" && process.env.NODE_ENV === 'development') {
|
|
15
|
-
import("melonjs
|
|
15
|
+
import("@melonjs/debug-plugin").then((debugPlugin) => {
|
|
16
16
|
// automatically register the debug panel
|
|
17
17
|
utils.function.defer(plugin.register, this, debugPlugin.DebugPanelPlugin, "debugPanel");
|
|
18
18
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* melonJS debug plugin - v14.4.
|
|
2
|
+
* melonJS debug plugin - v14.4.5
|
|
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.4.
|
|
74
|
+
this.version = "14.4.5";
|
|
75
75
|
|
|
76
76
|
// persistent
|
|
77
77
|
this.isPersistent = true;
|