@cloudbase/lowcode-builder 1.1.5-alpha.6 → 1.1.5-alpha.7

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.
@@ -472,7 +472,7 @@ async function installDependencies(targetDir, options = {}) {
472
472
  console.log(`Installing dependencies in ${targetDir}`);
473
473
  const operationTag = `---------------- ${yarnExists ? 'yarn' : 'npm'} Install dependencies`;
474
474
  console.time(operationTag);
475
- const registry = `--registry=${config_1.npmRegistry}`;
475
+ const registry = `--registry=${process.env.NPM_REGISTRY || config_1.npmRegistry}`;
476
476
  const npmOptions = ['--prefer-offline', '--no-audit', '--progress=false', registry];
477
477
  if (options === null || options === void 0 ? void 0 : options.dependenceMeta) {
478
478
  npmOptions.push('--production');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/lowcode-builder",
3
- "version": "1.1.5-alpha.6",
3
+ "version": "1.1.5-alpha.7",
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",