Skip to content

Commit ee09354

Browse files
committed
fix import name in the usage description
1 parent 19664ef commit ee09354

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Then import and instantiante the debug plugin in your project. For example:
1212
import { utils, plugin } from 'melonjs';
1313
// initialize the debug plugin in development mode.
1414
if (typeof process !== "undefined" && process.env.NODE_ENV === 'development') {
15-
import("melonjs-debug-plugin.js").then((debugPlugin) => {
15+
import("@melonjs/debug-plugin").then((debugPlugin) => {
1616
// automatically register the debug panel
1717
utils.function.defer(plugin.register, this, debugPlugin.DebugPanelPlugin, "debugPanel");
1818
});

dist/melonjs-debug-plugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* melonJS debug plugin - v14.4.4
2+
* melonJS debug plugin - v14.4.5
33
* http://www.melonjs.org
44
* @melonjs/debug-plugin is licensed under the MIT License.
55
* http://www.opensource.org/licenses/mit-license
@@ -71,7 +71,7 @@ class DebugPanel extends Renderable {
7171
this.name = "debugPanel";
7272

7373
// the debug panel version
74-
this.version = "14.4.4";
74+
this.version = "14.4.5";
7575

7676
// persistent
7777
this.isPersistent = true;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@melonjs/debug-plugin",
3-
"version": "14.4.4",
3+
"version": "14.4.5",
44
"description": "melonJS debug plugin",
55
"type": "module",
66
"keywords": [

0 commit comments

Comments
 (0)