@tapd/tplugin-cli 0.70.0 → 0.70.1-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/lib/create.js CHANGED
@@ -324,7 +324,7 @@ async function selectEntrances() {
324
324
 
325
325
  // 组装返回数据
326
326
  return {
327
- entrances: resourceConfigs.map(entrance => (entrance._tags ? `${entrance._key}_${entrance.tag}` : entrance._key)),
327
+ entrances: resourceConfigs.map(entrance => (entrance._tags ? `${entrance._key}::${entrance.tag}` : entrance._key)),
328
328
  resources_configs: JSON.stringify(resourceConfigs.map(entrance => ({
329
329
  ..._.omit(entrance, ['_key', '_tags', '_name']),
330
330
  key: entrance._key,
package/lib/deploy.js CHANGED
@@ -467,7 +467,7 @@ async function checkAndInstallPythonDeps() {
467
467
  execSync('pip3 install -r requirements.txt -t .', { stdio: 'inherit' });
468
468
  spinner.succeed('Python 依赖安装完成');
469
469
  } catch (e) {
470
- spinner.fail('Python依赖安装失败,请手动执行 pip install -r requirements.txt -t .');
470
+ spinner.fail('Python依赖安装失败,请手动执行 pip3 install -r requirements.txt -t .');
471
471
  process.exit(1);
472
472
  }
473
473
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapd/tplugin-cli",
3
- "version": "0.70.0",
3
+ "version": "0.70.1-alpha.0",
4
4
  "description": "tplugin-cli",
5
5
  "bin": {
6
6
  "tplugin-cli": "index.js"
@@ -79,5 +79,5 @@
79
79
  "node": ">=14.13.0"
80
80
  },
81
81
  "main": "index.js",
82
- "gitHead": "1960a671f553b05f5c5d51ca3c0980aa09e4f944"
82
+ "gitHead": "3688da367071407a46b89d1b3224a3c2c7c25645"
83
83
  }