cloudcmd 19.3.9 → 19.4.1
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/ChangeLog +16 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/bun.lock +4498 -0
- package/dist/cloudcmd.common.js +4 -1
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +6 -6
- package/server/cloudcmd.js +1 -1
package/dist/cloudcmd.common.js
CHANGED
|
@@ -12365,11 +12365,14 @@ const createCloudMenu = async (fm, options, menuData) => {
|
|
|
12365
12365
|
};
|
|
12366
12366
|
async function loadMenu() {
|
|
12367
12367
|
if (CloudCmd.config('menu') === 'aleman') {
|
|
12368
|
+
const {
|
|
12369
|
+
prefix
|
|
12370
|
+
} = CloudCmd;
|
|
12368
12371
|
const {
|
|
12369
12372
|
host,
|
|
12370
12373
|
protocol
|
|
12371
12374
|
} = globalThis.location;
|
|
12372
|
-
const url = `${protocol}//${host}/node_modules/aleman/menu/menu.js`;
|
|
12375
|
+
const url = `${protocol}//${host}${prefix}/node_modules/aleman/menu/menu.js`;
|
|
12373
12376
|
const {
|
|
12374
12377
|
createMenu
|
|
12375
12378
|
} = await import(/* webpackIgnore: true */url);
|