@kevisual/cli 0.0.66 → 0.0.67

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.
@@ -66407,7 +66407,6 @@ class HttpsPem {
66407
66407
  if (config2.https) {
66408
66408
  const httpsType = config2.https?.type || "https";
66409
66409
  if (httpsType !== "https") {
66410
- console.log(chalk2.yellow("当前配置文件 https.type 不是 https, 不使用证书"));
66411
66410
  return;
66412
66411
  }
66413
66412
  this.isHttps = true;
package/dist/assistant.js CHANGED
@@ -66249,7 +66249,6 @@ class HttpsPem {
66249
66249
  if (config2.https) {
66250
66250
  const httpsType = config2.https?.type || "https";
66251
66251
  if (httpsType !== "https") {
66252
- console.log(chalk2.yellow("当前配置文件 https.type 不是 https, 不使用证书"));
66253
66252
  return;
66254
66253
  }
66255
66254
  this.isHttps = true;
package/dist/envision.js CHANGED
@@ -40643,8 +40643,8 @@ InitEnv.init();
40643
40643
  var version = useContextKey("version", () => {
40644
40644
  let version2 = "0.0.64";
40645
40645
  try {
40646
- if ("0.0.66")
40647
- version2 = "0.0.66";
40646
+ if ("0.0.67")
40647
+ version2 = "0.0.67";
40648
40648
  } catch (e) {}
40649
40649
  return version2;
40650
40650
  });
@@ -46838,13 +46838,7 @@ var command2 = new Command("deploy").description("把前端文件传到服务器
46838
46838
  if (id && showBackend) {
46839
46839
  console.log(`
46840
46840
  `);
46841
- const pkKey = pkgInfo?.app?.key || pkgInfo?.appKey;
46842
- console.log(source_default.blue("服务端应用部署: "), "envision pack-deploy", id, "-k <key>");
46843
- if (pkKey) {
46844
- console.log(`
46845
- `);
46846
- console.log(source_default.blue("命令推荐: "), "envision pack-deploy", id, `-k ${pkKey} -f`);
46847
- }
46841
+ console.log(source_default.blue("服务端应用部署: "), "envision pack-deploy", id);
46848
46842
  console.log(`
46849
46843
  `);
46850
46844
  }
@@ -47753,17 +47747,6 @@ var packCommand = new Command("pack").description("打包应用, 使用 package.
47753
47747
  });
47754
47748
  var packDeployCommand = new Command("pack-deploy").argument("<id>", "id").option("-k, --key <key>", "fileKey, 服务器的部署文件夹的列表").option("-f --force", "force").option("-i, --install ", "install dependencies").action(async (id, opts) => {
47755
47749
  let { force, key, install: install2 } = opts || {};
47756
- if (!key) {
47757
- const answers = await dist_default12.prompt([
47758
- {
47759
- type: "input",
47760
- name: "key",
47761
- message: "Enter your deploy to services fileKey:",
47762
- when: () => !key
47763
- }
47764
- ]);
47765
- key = answers.key || key;
47766
- }
47767
47750
  const res = await deployLoadFn2(id, key, force, install2);
47768
47751
  });
47769
47752
  program.addCommand(packDeployCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevisual/cli",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "description": "envision 命令行工具",
5
5
  "type": "module",
6
6
  "basename": "/root/cli",
@@ -67,7 +67,7 @@
67
67
  "inquirer": "^13.0.1",
68
68
  "jsonwebtoken": "^9.0.2",
69
69
  "tar": "^7.5.2",
70
- "zustand": "^5.0.8"
70
+ "zustand": "^5.0.9"
71
71
  },
72
72
  "engines": {
73
73
  "node": ">=22.0.0"