@superdesign/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.
@@ -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.0";
15
+ export declare const CLI_VERSION = "0.1.2";
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.0",
316
+ cliVersion: "0.1.2",
317
317
  os: `${external_os_namespaceObject.platform()} ${external_os_namespaceObject.release()}`,
318
318
  hostname: external_os_namespaceObject.hostname()
319
319
  });
@@ -1501,7 +1501,7 @@ superdesign get-design --draft-id <id> --json
1501
1501
  (0, external_dotenv_namespaceObject.config)();
1502
1502
  function createProgram() {
1503
1503
  const program = new external_commander_namespaceObject.Command();
1504
- program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.0");
1504
+ program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.2");
1505
1505
  program.addCommand(createLoginCommand());
1506
1506
  program.addCommand(createLogoutCommand());
1507
1507
  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.0",
226
+ cliVersion: "0.1.2",
227
227
  os: `${platform()} ${release()}`,
228
228
  hostname: hostname()
229
229
  });
@@ -1410,7 +1410,7 @@ external_dotenv_config({
1410
1410
  external_dotenv_config();
1411
1411
  function createProgram() {
1412
1412
  const program = new Command();
1413
- program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.0");
1413
+ program.name('superdesign').description('SuperDesign CLI - AI product designer for coding agents').version("0.1.2");
1414
1414
  program.addCommand(createLoginCommand());
1415
1415
  program.addCommand(createLogoutCommand());
1416
1416
  program.addCommand(createInitCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdesign/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI for SuperDesign Platform - agent skills for Claude Code",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",