shadcn-studio-extension-cli 0.1.0 → 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 +1 -0
- package/dist/THIRD_PARTY_LICENSES.txt +1 -1
- package/dist/build-meta.json +6 -6
- package/dist/index.cjs +4 -3
- package/dist/index.cjs.map +2 -2
- package/dist/toolbar-app/.vite/manifest.json +4 -4
- package/dist/toolbar-app/index-ChCX2CjU.js +8917 -0
- package/dist/toolbar-app/index.js +61 -72
- package/dist/toolbar-app/plugin-sdk.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/build-meta.json
CHANGED
|
@@ -7217,7 +7217,7 @@
|
|
|
7217
7217
|
"format": "esm"
|
|
7218
7218
|
},
|
|
7219
7219
|
"src/config/index.ts": {
|
|
7220
|
-
"bytes":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
14137
|
+
"bytesInOutput": 7220
|
|
14138
14138
|
}
|
|
14139
14139
|
},
|
|
14140
|
-
"bytes":
|
|
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 ||
|
|
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 ||
|
|
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 =
|
|
97214
|
+
const port2 = DEFAULT_PORT;
|
|
97214
97215
|
const tokenData = await oauthManager.initiateOAuthFlow(
|
|
97215
97216
|
port2,
|
|
97216
97217
|
void 0,
|