shadcn-studio-extension-cli 0.1.1 → 0.1.2

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/README.md CHANGED
@@ -58,6 +58,7 @@ And simply follow the short guide of the CLI app to setup your stagewise account
58
58
  | Cursor | ✅ |
59
59
  | GitHub Copilot | ✅ |
60
60
  | Windsurf | ✅ |
61
+ | Antigravity | ✅ |
61
62
  | Cline | ✅ |
62
63
  | Roo Code | ✅ |
63
64
  | Kilo Code | ✅ |
@@ -7217,7 +7217,7 @@
7217
7217
  "format": "esm"
7218
7218
  },
7219
7219
  "src/config/index.ts": {
7220
- "bytes": 8597,
7220
+ "bytes": 8647,
7221
7221
  "imports": [
7222
7222
  {
7223
7223
  "path": "src/auth/oauth.ts",
@@ -11248,7 +11248,7 @@
11248
11248
  "format": "esm"
11249
11249
  },
11250
11250
  "src/index.ts": {
11251
- "bytes": 10199,
11251
+ "bytes": 10221,
11252
11252
  "imports": [
11253
11253
  {
11254
11254
  "path": "../../node_modules/.pnpm/open@10.1.2/node_modules/open/index.js",
@@ -11329,7 +11329,7 @@
11329
11329
  "imports": [],
11330
11330
  "exports": [],
11331
11331
  "inputs": {},
11332
- "bytes": 6268053
11332
+ "bytes": 6268144
11333
11333
  },
11334
11334
  "dist/index.cjs": {
11335
11335
  "imports": [
@@ -14086,7 +14086,7 @@
14086
14086
  "bytesInOutput": 0
14087
14087
  },
14088
14088
  "src/config/index.ts": {
14089
- "bytesInOutput": 6561
14089
+ "bytesInOutput": 6602
14090
14090
  },
14091
14091
  "src/dependency-parser/index.ts": {
14092
14092
  "bytesInOutput": 3554
@@ -14134,10 +14134,10 @@
14134
14134
  "bytesInOutput": 3729
14135
14135
  },
14136
14136
  "src/index.ts": {
14137
- "bytesInOutput": 7212
14137
+ "bytesInOutput": 7220
14138
14138
  }
14139
14139
  },
14140
- "bytes": 3806712
14140
+ "bytes": 3806761
14141
14141
  }
14142
14142
  }
14143
14143
  }
package/dist/index.cjs CHANGED
@@ -73676,6 +73676,7 @@ var configFileExists = /* @__PURE__ */ __name(async (dir) => {
73676
73676
  }, "configFileExists");
73677
73677
 
73678
73678
  // src/config/index.ts
73679
+ var DEFAULT_PORT = 3200;
73679
73680
  var ConfigResolver = class {
73680
73681
  static {
73681
73682
  __name(this, "ConfigResolver");
@@ -73729,7 +73730,7 @@ Please fix the errors in ${CONFIG_FILE_NAME} and try again.`
73729
73730
  await saveConfigFile(workspace, { appPort: appPort3 });
73730
73731
  }
73731
73732
  this.config = {
73732
- port: port || 3100,
73733
+ port: port || DEFAULT_PORT,
73733
73734
  appPort: appPort3,
73734
73735
  dir: workspace,
73735
73736
  silent,
@@ -73763,7 +73764,7 @@ Please fix the errors in ${CONFIG_FILE_NAME} and try again.`
73763
73764
  }
73764
73765
  throw error;
73765
73766
  }
73766
- const port2 = port || configFile?.port || 3100;
73767
+ const port2 = port || configFile?.port || DEFAULT_PORT;
73767
73768
  let appPort2 = appPort || configFile?.appPort;
73768
73769
  const autoPlugins = configFile?.autoPlugins ?? true;
73769
73770
  const plugins = configFile?.plugins ?? [];
@@ -97210,7 +97211,7 @@ async function main() {
97210
97211
  return;
97211
97212
  }
97212
97213
  try {
97213
- const port2 = 3100;
97214
+ const port2 = DEFAULT_PORT;
97214
97215
  const tokenData = await oauthManager.initiateOAuthFlow(
97215
97216
  port2,
97216
97217
  void 0,