@monbolc/lowcode-plugin-command 2.0.0 → 2.0.2
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/es/index.js +2 -2
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* Command pattern + undo/redo history + keyboard shortcuts.
|
|
5
5
|
* SapuLowcodeEngine L2.
|
|
6
6
|
*/
|
|
7
|
-
export { CommandManager } from './manager';
|
|
8
|
-
export { parseShortcut, bindShortcuts, isMacOS, } from './shortcut';
|
|
7
|
+
export { CommandManager } from './manager.js';
|
|
8
|
+
export { parseShortcut, bindShortcuts, isMacOS, } from './shortcut.js';
|
|
9
9
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monbolc/lowcode-plugin-command",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Command pattern + undo/redo history for SapuLowcodeEngine (L2)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"files": ["lib", "es"],
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tsc -p tsconfig.json",
|
|
19
|
-
"build:es": "tsc -p tsconfig.esm.json",
|
|
19
|
+
"build:es": "tsc -p tsconfig.esm.json && node ../../scripts/add-js-extensions.mjs es",
|
|
20
20
|
"clean": "rimraf lib es"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|