@cloudbase/lowcode-builder 1.8.91-ide.0 → 1.8.92-ide.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.
|
@@ -2,14 +2,10 @@ export { REPLACE_SIGN, MP_CONFIG_MODULE_NAME, KBONE_PAGE_KEYS, npmRegistry, remC
|
|
|
2
2
|
export declare const sharedMaterialsDir: string;
|
|
3
3
|
export declare const appTemplateDir: string;
|
|
4
4
|
export declare const materialsDirName = "materials";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export declare const miniprogramURL = "https://comp-public-1303824488.file.myqcloud.com/lcap-builder/miniprogram_npm.1.8.57.zip";
|
|
10
|
-
export declare const cloudbaseMiniprogramURL = "https://comp-public-1303824488.file.myqcloud.com/lcap-builder/cloudbase_miniprogram_npm.1.8.57.zip";
|
|
11
|
-
export declare const systemSubpackageMiniprogramURL = "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/lcap-builder/wd_system_miniprogram_npm.zip";
|
|
12
|
-
export declare const RUNTIME_CONFIG_URL = "https://comp-public-1303824488.file.myqcloud.com/release_config/runtime/exp_runtime.json";
|
|
5
|
+
export declare const miniprogramURL: string;
|
|
6
|
+
export declare const cloudbaseMiniprogramURL: string;
|
|
7
|
+
export declare const systemSubpackageMiniprogramURL: string;
|
|
8
|
+
export declare const RUNTIME_CONFIG_URL: string;
|
|
13
9
|
/**
|
|
14
10
|
* miniprogram_npm存放目录。IDE插件builder用到
|
|
15
11
|
*/
|
|
@@ -45,10 +45,11 @@ exports.materialsDirName = 'materials'; // materials diretory of current project
|
|
|
45
45
|
* miniprogram的代码,IDE插件后续会提供端功能
|
|
46
46
|
* 存放在大账号:100015939275。访问地址:https://console.cloud.tencent.com/cos/bucket?bucket=comp-public-1303824488®ion=ap-shanghai&path=%252Flcap-builder%252F
|
|
47
47
|
*/
|
|
48
|
-
|
|
49
|
-
exports.
|
|
50
|
-
exports.
|
|
51
|
-
exports.
|
|
48
|
+
const COMP_PUBLIC_DOMAIN = 'comp-public-1303824488.file.myqcloud.com';
|
|
49
|
+
exports.miniprogramURL = `https://${COMP_PUBLIC_DOMAIN}/lcap-builder/miniprogram_npm.1.8.57.zip`;
|
|
50
|
+
exports.cloudbaseMiniprogramURL = `https://${COMP_PUBLIC_DOMAIN}/lcap-builder/cloudbase_miniprogram_npm.1.8.57.zip`;
|
|
51
|
+
exports.systemSubpackageMiniprogramURL = `https://${COMP_PUBLIC_DOMAIN}/lcap-builder/wd_system_miniprogram_npm.zip`;
|
|
52
|
+
exports.RUNTIME_CONFIG_URL = `https://${COMP_PUBLIC_DOMAIN}/release_config/runtime/exp_runtime.json`;
|
|
52
53
|
/**
|
|
53
54
|
* miniprogram_npm存放目录。IDE插件builder用到
|
|
54
55
|
*/
|