@superdesign/cli 0.1.3 → 0.1.4
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/dist/config/constants.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ export declare const POLL_TIMEOUT_MS: number;
|
|
|
12
12
|
export declare const AUTH_POLL_INTERVAL_MS = 2000;
|
|
13
13
|
export declare const AUTH_POLL_TIMEOUT_MS: number;
|
|
14
14
|
/** CLI version - should match package.json */
|
|
15
|
-
export declare const CLI_VERSION = "0.1.
|
|
15
|
+
export declare const CLI_VERSION = "0.1.4";
|
|
16
16
|
/** Config directory name */
|
|
17
17
|
export declare const CONFIG_DIR_NAME = ".superdesign";
|
|
18
18
|
/** Config file name */
|
package/dist/index.cjs
CHANGED
|
@@ -313,7 +313,7 @@ var __webpack_exports__ = {};
|
|
|
313
313
|
try {
|
|
314
314
|
startSpinner('Creating auth session...');
|
|
315
315
|
const session = await createSession({
|
|
316
|
-
cliVersion: "0.1.
|
|
316
|
+
cliVersion: "0.1.4",
|
|
317
317
|
os: `${external_os_namespaceObject.platform()} ${external_os_namespaceObject.release()}`,
|
|
318
318
|
hostname: external_os_namespaceObject.hostname()
|
|
319
319
|
});
|
|
@@ -1533,7 +1533,7 @@ superdesign get-design --draft-id <id> --json
|
|
|
1533
1533
|
(0, external_dotenv_namespaceObject.config)();
|
|
1534
1534
|
function createProgram() {
|
|
1535
1535
|
const program = new external_commander_namespaceObject.Command();
|
|
1536
|
-
program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.
|
|
1536
|
+
program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.4");
|
|
1537
1537
|
program.addCommand(createLoginCommand());
|
|
1538
1538
|
program.addCommand(createLogoutCommand());
|
|
1539
1539
|
program.addCommand(createInitCommand());
|
package/dist/index.js
CHANGED
|
@@ -223,7 +223,7 @@ async function runAuthFlow(options = {}) {
|
|
|
223
223
|
try {
|
|
224
224
|
startSpinner('Creating auth session...');
|
|
225
225
|
const session = await createSession({
|
|
226
|
-
cliVersion: "0.1.
|
|
226
|
+
cliVersion: "0.1.4",
|
|
227
227
|
os: `${platform()} ${release()}`,
|
|
228
228
|
hostname: hostname()
|
|
229
229
|
});
|
|
@@ -1442,7 +1442,7 @@ external_dotenv_config({
|
|
|
1442
1442
|
external_dotenv_config();
|
|
1443
1443
|
function createProgram() {
|
|
1444
1444
|
const program = new Command();
|
|
1445
|
-
program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.
|
|
1445
|
+
program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.4");
|
|
1446
1446
|
program.addCommand(createLoginCommand());
|
|
1447
1447
|
program.addCommand(createLogoutCommand());
|
|
1448
1448
|
program.addCommand(createInitCommand());
|