@usevalt/cli 0.3.1 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -281,7 +281,7 @@ var loginCommand = new Command2("login").description("Authenticate with Valt (op
281
281
  error(`Failed to initiate login: ${err instanceof Error ? err.message : String(err)}`);
282
282
  process.exit(1);
283
283
  }
284
- const verificationUrl = `${endpoint}/auth/device?code=${deviceData.user_code}`;
284
+ const verificationUrl = `${endpoint}/device?code=${deviceData.user_code}`;
285
285
  info("");
286
286
  info(`Your verification code: ${bold(deviceData.user_code)}`);
287
287
  info("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usevalt/cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Valt CLI — trust layer for AI-assisted development",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -39,8 +39,8 @@
39
39
  "tsup": "^8.4.0",
40
40
  "typescript": "^5.7.0",
41
41
  "vitest": "^3.2.0",
42
- "@usevalt/eslint-config": "0.0.0",
43
- "@usevalt/typescript-config": "0.0.0"
42
+ "@usevalt/typescript-config": "0.0.0",
43
+ "@usevalt/eslint-config": "0.0.0"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsup",