@cloudbase/lowcode-builder 1.3.11 → 1.3.12-alpha.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.
- package/dist/builder.web.js +71 -0
- package/lib/.turbo/turbo-build.log +0 -0
- package/lib/.turbo/turbo-develop.log +0 -0
- package/lib/builder/config/index.d.ts +1 -1
- package/lib/builder/config/index.js +1 -1
- package/lib/builder/core/index.js +18 -19
- package/lib/builder.web.js +11 -11
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/package.json +1 -1
- package/template/assets.zip +0 -0
|
File without changes
|
|
File without changes
|
|
@@ -6,7 +6,7 @@ export declare const materialsDirName = "materials";
|
|
|
6
6
|
* src/template的代码,在IDE编辑器插件中构建builder
|
|
7
7
|
* 存放在大账号:100015939275。访问地址:https://console.cloud.tencent.com/cos/bucket?bucket=comp-public-1303824488®ion=ap-shanghai&path=%252Flcap-builder%252F
|
|
8
8
|
*/
|
|
9
|
-
export declare const builderTemplateURL = "
|
|
9
|
+
export declare const builderTemplateURL = "http://127.0.0.1:8000/template.zip";
|
|
10
10
|
/**
|
|
11
11
|
* miniprogram的代码,IDE插件后续会提供端功能
|
|
12
12
|
* 存放在大账号:100015939275。访问地址:https://console.cloud.tencent.com/cos/bucket?bucket=comp-public-1303824488®ion=ap-shanghai&path=%252Flcap-builder%252F
|
|
@@ -45,7 +45,7 @@ exports.materialsDirName = 'materials'; // materials diretory of current project
|
|
|
45
45
|
* src/template的代码,在IDE编辑器插件中构建builder
|
|
46
46
|
* 存放在大账号:100015939275。访问地址:https://console.cloud.tencent.com/cos/bucket?bucket=comp-public-1303824488®ion=ap-shanghai&path=%252Flcap-builder%252F
|
|
47
47
|
*/
|
|
48
|
-
exports.builderTemplateURL = '
|
|
48
|
+
exports.builderTemplateURL = 'http://127.0.0.1:8000/template.zip';
|
|
49
49
|
/**
|
|
50
50
|
* miniprogram的代码,IDE插件后续会提供端功能
|
|
51
51
|
* 存放在大账号:100015939275。访问地址:https://console.cloud.tencent.com/cos/bucket?bucket=comp-public-1303824488®ion=ap-shanghai&path=%252Flcap-builder%252F
|
|
@@ -12,7 +12,6 @@ const common_1 = require("../types/common");
|
|
|
12
12
|
const index_1 = require("../mp/index");
|
|
13
13
|
const types_1 = require("../../types");
|
|
14
14
|
const mixMode_1 = require("../mp/mixMode");
|
|
15
|
-
const index_2 = require("../h5/index");
|
|
16
15
|
const common_2 = require("../../utils/common");
|
|
17
16
|
const postProcess_1 = require("../../utils/postProcess");
|
|
18
17
|
const cals_1 = require("@cloudbase/cals");
|
|
@@ -112,24 +111,24 @@ async function buildWedaApp({ cals, subAppCalsList = [], dependencies = [], appK
|
|
|
112
111
|
return outDir;
|
|
113
112
|
}
|
|
114
113
|
else {
|
|
115
|
-
const h5BuildDir = await
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
});
|
|
128
|
-
await
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
})
|
|
132
|
-
return h5BuildDir;
|
|
114
|
+
// const h5BuildDir = await buildH5App({
|
|
115
|
+
// buildContext: { ...buildContext, isMixMode: false },
|
|
116
|
+
// cals,
|
|
117
|
+
// subAppCalsList,
|
|
118
|
+
// extraData,
|
|
119
|
+
// buildTypeList,
|
|
120
|
+
// mode,
|
|
121
|
+
// devTool,
|
|
122
|
+
// runtime,
|
|
123
|
+
// deployMode,
|
|
124
|
+
// ignoreInstall,
|
|
125
|
+
// cdnEndpoints,
|
|
126
|
+
// });
|
|
127
|
+
// await cb?.(null, {
|
|
128
|
+
// outDir: h5BuildDir,
|
|
129
|
+
// timeElapsed: Date.now() - startTime,
|
|
130
|
+
// });
|
|
131
|
+
// return h5BuildDir;
|
|
133
132
|
}
|
|
134
133
|
}
|
|
135
134
|
catch (err) {
|