@cloudbase/framework-plugin-low-code 0.5.1-alpha.1 → 0.5.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.
|
@@ -118,7 +118,7 @@ function buildWebApp({ mainAppSerializeData, subAppSerializeDataList = [], depen
|
|
|
118
118
|
});
|
|
119
119
|
yield material_1.runHandleMaterial(appBuildDir, filteredDependiences, materialsDir, runtime, ignoreInstall);
|
|
120
120
|
console.timeEnd(runHandleMaterialTag);
|
|
121
|
-
yield generate_1.runGenerateCore(appBuildDir, mainAppData, subAppDataList, filteredDependiences, appKey, basename, buildTypeList, deployMode, runtime,
|
|
121
|
+
yield generate_1.runGenerateCore(appBuildDir, mainAppData, subAppDataList, filteredDependiences, appKey, basename, buildTypeList, deployMode, runtime, ignoreInstall, extraData, domain);
|
|
122
122
|
const doneCallback = prepare_1.createDoneCallBack({ appBuildDir, projectConfig }, cb);
|
|
123
123
|
yield webpack_2.runWebpackCore({
|
|
124
124
|
appBuildDir,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/framework-plugin-low-code",
|
|
3
|
-
"version": "0.5.1
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "云开发 Tencent CloudBase Framework Low Code Plugin,将低码配置生成完整项目并一键部署云开发资源。",
|
|
5
5
|
"author": "yhsunshining@gmail.com",
|
|
6
6
|
"homepage": "https://github.com/TencentCloudBase/cloudbase-framework#readme",
|
|
@@ -127,7 +127,6 @@ export function getStaticResourceAttribute(staticUrl) {
|
|
|
127
127
|
* 检查页面权限
|
|
128
128
|
**/
|
|
129
129
|
export async function checkAuth(app, appId, pageId) {
|
|
130
|
-
return true;
|
|
131
130
|
app.showNavigationBarLoading();
|
|
132
131
|
const checkAuthResult = await app.cloud.checkAuth({
|
|
133
132
|
type: 'app',
|