@kevisual/cli 0.1.28 → 0.1.29

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.
@@ -44572,7 +44572,7 @@ class AssistantConfig {
44572
44572
  return checkConfigDir;
44573
44573
  }
44574
44574
  getDefaultInitAssistantConfig() {
44575
- const id = randomId2();
44575
+ let id = randomId2();
44576
44576
  const isCNB = !!useKey("CNB");
44577
44577
  let kevisualUrl = "https://kevisual.cn";
44578
44578
  if (isCNB) {
@@ -44586,6 +44586,7 @@ class AssistantConfig {
44586
44586
  const routes = ["@kevisual/cnb/routes"];
44587
44587
  if (isCNB) {
44588
44588
  routes.push("@kevisual/project-search/routes");
44589
+ id = "cnb-dev";
44589
44590
  }
44590
44591
  return {
44591
44592
  app: {
@@ -83707,7 +83707,7 @@ class AssistantConfig {
83707
83707
  return checkConfigDir;
83708
83708
  }
83709
83709
  getDefaultInitAssistantConfig() {
83710
- const id = randomId2();
83710
+ let id = randomId2();
83711
83711
  const isCNB = !!useKey2("CNB");
83712
83712
  let kevisualUrl = "https://kevisual.cn";
83713
83713
  if (isCNB) {
@@ -83721,6 +83721,7 @@ class AssistantConfig {
83721
83721
  const routes = ["@kevisual/cnb/routes"];
83722
83722
  if (isCNB) {
83723
83723
  routes.push("@kevisual/project-search/routes");
83724
+ id = "cnb-dev";
83724
83725
  }
83725
83726
  return {
83726
83727
  app: {
package/dist/assistant.js CHANGED
@@ -28845,7 +28845,7 @@ class AssistantConfig {
28845
28845
  return checkConfigDir;
28846
28846
  }
28847
28847
  getDefaultInitAssistantConfig() {
28848
- const id = randomId();
28848
+ let id = randomId();
28849
28849
  const isCNB = !!useKey("CNB");
28850
28850
  let kevisualUrl = "https://kevisual.cn";
28851
28851
  if (isCNB) {
@@ -28859,6 +28859,7 @@ class AssistantConfig {
28859
28859
  const routes = ["@kevisual/cnb/routes"];
28860
28860
  if (isCNB) {
28861
28861
  routes.push("@kevisual/project-search/routes");
28862
+ id = "cnb-dev";
28862
28863
  }
28863
28864
  return {
28864
28865
  app: {
package/dist/envision.js CHANGED
@@ -22530,8 +22530,8 @@ InitEnv.init();
22530
22530
  var version = useContextKey("version", () => {
22531
22531
  let version2 = "0.0.64";
22532
22532
  try {
22533
- if ("0.1.27")
22534
- version2 = "0.1.27";
22533
+ if ("0.1.28")
22534
+ version2 = "0.1.28";
22535
22535
  } catch (e) {}
22536
22536
  return version2;
22537
22537
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevisual/cli",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "envision 命令行工具",
5
5
  "type": "module",
6
6
  "basename": "/root/cli",