@alexkroman1/aai-cli 5.10.0 → 5.10.1

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/cli.mjs CHANGED
@@ -317,7 +317,7 @@ const init = defineCommand({
317
317
  },
318
318
  async run({ args }) {
319
319
  await runCommand(args, async (mode) => {
320
- const { executeInit } = await import("./init-Nc6fB774.mjs");
320
+ const { executeInit } = await import("./init-GQsNWkLJ.mjs");
321
321
  return executeInit({
322
322
  dir: args.dir,
323
323
  force: args.force,
@@ -18,7 +18,7 @@ async function promptProjectName(yes) {
18
18
  defaultValue: DEFAULT_PROJECT_NAME
19
19
  }), "Setup cancelled") || DEFAULT_PROJECT_NAME;
20
20
  }
21
- /** Enable corepack so pnpm is available (scaffold declares packageManager: pnpm). */
21
+ /** Best-effort corepack enable so pnpm is available (scaffold declares packageManager: pnpm). */
22
22
  async function ensurePnpm() {
23
23
  await execa("corepack", ["enable"], { reject: false });
24
24
  }
@@ -65,7 +65,7 @@ async function installDeps(cwd, silent) {
65
65
  } catch (err) {
66
66
  s?.stop("Dependency install failed");
67
67
  log.warn(`pnpm install failed: ${errorMessage(err)}`);
68
- log.warn("Run `corepack enable && pnpm install` manually in the project directory.");
68
+ log.warn("Install pnpm (`npm install -g pnpm`), then run `pnpm install` in the project.");
69
69
  return false;
70
70
  }
71
71
  }
@@ -11,15 +11,15 @@
11
11
  "publish:agent": "aai publish"
12
12
  },
13
13
  "dependencies": {
14
- "@alexkroman1/aai": "^5.10.0",
15
- "@alexkroman1/aai-ui": "^5.10.0",
14
+ "@alexkroman1/aai": "^5.10.1",
15
+ "@alexkroman1/aai-ui": "^5.10.1",
16
16
  "react": "^19.2.8",
17
17
  "react-dom": "^19.2.8",
18
18
  "tailwindcss": "^4.0.0",
19
19
  "zod": "^4.4.3"
20
20
  },
21
21
  "devDependencies": {
22
- "@alexkroman1/aai-cli": "^5.10.0",
22
+ "@alexkroman1/aai-cli": "^5.10.1",
23
23
  "@tailwindcss/vite": "^4.3.3",
24
24
  "@types/node": "^26.1.1",
25
25
  "@types/react": "^19.2.17",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexkroman1/aai-cli",
3
- "version": "5.10.0",
3
+ "version": "5.10.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aai": "bin.mjs"
@@ -38,8 +38,8 @@
38
38
  "p-timeout": "^7.0.1",
39
39
  "vite": "^8.1.5",
40
40
  "zod": "^4.4.3",
41
- "@alexkroman1/aai": "5.10.0",
42
- "@alexkroman1/aai-ui": "5.10.0"
41
+ "@alexkroman1/aai": "5.10.1",
42
+ "@alexkroman1/aai-ui": "5.10.1"
43
43
  },
44
44
  "devDependencies": {
45
45
  "playwright": "^1.61.1",