@akanjs/devkit 2.3.11-rc.4 → 2.3.11-rc.5

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/executors.test.ts CHANGED
@@ -140,7 +140,7 @@ describe("Executor filesystem helpers", () => {
140
140
  expect(await readFile(path.join(root, "workspace/.env"), "utf8")).toContain("AKAN_PUBLIC_REPO_NAME");
141
141
  expect(await readFile(path.join(root, "workspace/.vscode/settings.json"), "utf8")).toContain("typescript.tsdk");
142
142
  expect(await readFile(path.join(root, "workspace/.cursor/rules/akan.mdc"), "utf8")).toContain(
143
- "Akan.js Workspace Rules",
143
+ "Akan workspace agent guide",
144
144
  );
145
145
  expect(await readFile(path.join(root, "workspace/AGENTS.md"), "utf8")).toContain("sample Agent Guide");
146
146
  expect(await readFile(path.join(root, "workspace/docs/AI-DEVELOPMENT.md"), "utf8")).toContain(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "2.3.11-rc.4",
3
+ "version": "2.3.11-rc.5",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -32,7 +32,7 @@
32
32
  "@langchain/openai": "^1.4.6",
33
33
  "@tailwindcss/node": "^4.3.0",
34
34
  "@trapezedev/project": "^7.1.4",
35
- "akanjs": "2.3.11-rc.4",
35
+ "akanjs": "2.3.11-rc.5",
36
36
  "chalk": "^5.6.2",
37
37
  "commander": "^14.0.3",
38
38
  "daisyui": "5.5.23",
package/scanInfo.ts CHANGED
@@ -52,6 +52,7 @@ const appRootAllowedFiles = new Set([
52
52
  "package.json",
53
53
  "server.ts",
54
54
  "tsconfig.json",
55
+ "tsconfig.tsbuildinfo",
55
56
  ]);
56
57
  const appRootAllowedDirs = new Set([
57
58
  ".akan",