@cloudbase/framework-plugin-low-code 1.7.2 → 1.7.4

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/scripts/link.js +3 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/framework-plugin-low-code",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
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",
@@ -39,7 +39,7 @@
39
39
  "@cloudbase/framework-core": "^1.8.16",
40
40
  "@cloudbase/framework-plugin-auth": "^1.8.16",
41
41
  "@cloudbase/framework-plugin-website": "^1.8.17",
42
- "@cloudbase/lowcode-builder": "1.8.2",
42
+ "@cloudbase/lowcode-builder": "^1.8.5",
43
43
  "@cloudbase/lowcode-deployer": "^1.3.0",
44
44
  "@formily/react-schema-renderer": "1.1.7",
45
45
  "archiver": "^4.0.1",
package/scripts/link.js CHANGED
@@ -32,7 +32,7 @@ async function linkCore() {
32
32
  await link(
33
33
  path.join(process.cwd(), 'packages/framework-core'),
34
34
  path.join(globalNpmPath, '@cloudbase/cli'),
35
- '@cloudbase/framework-core'
35
+ '@cloudbase/framework-core',
36
36
  );
37
37
  }
38
38
 
@@ -46,7 +46,7 @@ function initRegistry() {
46
46
  packageJSON,
47
47
  JSON.stringify({
48
48
  name: 'cloudbase-framework-registry',
49
- })
49
+ }),
50
50
  );
51
51
  }
52
52
  }
@@ -61,11 +61,7 @@ async function linkPlugins() {
61
61
  for (const plugin of plugins) {
62
62
  console.log('\n', 'Link Plugin', plugin, '\n');
63
63
  // 创建软连接
64
- await link(
65
- path.join(process.cwd()),
66
- pluginRegistry,
67
- `@cloudbase/${plugin}`
68
- );
64
+ await link(path.join(process.cwd()), pluginRegistry, `@cloudbase/${plugin}`);
69
65
  }
70
66
  }
71
67