Skip to content

Commit f59222d

Browse files
fix: broken build, clean code
1 parent 387bb2b commit f59222d

6 files changed

Lines changed: 1499 additions & 1382 deletions

File tree

apps/wiki-cli/src/wrappers.smoke.spec.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
/**
2-
* CLI smoke/integration tests for the wiki-cli Nx application's
3-
* subcommands (Driver_Adapter composition roots).
4-
*
5-
* Invokes the built CLI (`dist/apps/wiki-cli/index.cjs`) as a real
6-
* subprocess from the actual repo root, asserting on stdout content and
7-
* exit code — the same way `nx run wiki-cli:<target>` invokes it.
8-
*
9-
* Requires `nx build wiki-cli` to have already produced
10-
* `dist/apps/wiki-cli/index.cjs`.
11-
*
12-
* **Validates: Requirements 2.6**
13-
*/
14-
151
import { describe, it, expect, afterEach } from 'vitest';
162
import { execFileSync } from 'node:child_process';
173
import { renameSync, existsSync } from 'node:fs';

apps/wiki-cli/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"strict": true,
1212
"types": ["node", "vitest/globals"]
1313
},
14-
"include": ["src/**/*.ts"],
15-
"exclude": ["node_modules", "dist"]
14+
"include": ["src/**/*.ts", "vitest.config.ts"],
15+
"exclude": ["node_modules", "dist", "src/**/*.spec.ts", "src/**/*.test.ts"]
1616
}

apps/wiki-cli/tsconfig.spec.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"module": "esnext",
5+
"moduleResolution": "bundler",
6+
"outDir": "../../dist/out-tsc",
7+
"types": ["node", "vitest/globals"]
8+
},
9+
"include": ["src/**/*.spec.ts", "src/**/*.test.ts"],
10+
"exclude": ["node_modules", "dist"]
11+
}

wiki/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Welcome to the LLM Wiki Second Brain - an AI-powered knowledge management system
7474
## Statistics
7575

7676
- **Total Pages**: 30 (6 entities, 20 concepts, 4 sources)
77-
- **Last Updated**: 2026-07-14
77+
- **Last Updated**: 2026-07-15
7878
- **Wiki Health**: ✅
7979

8080
## Quick Reference

wiki/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
"sources/hexagonal-architecture-article-2018-08-29.md",
3232
"sources/angular-aria-big-picture-2026-05-30.md"
3333
],
34-
"generatedAt": "2026-07-14T18:38:38.763Z"
34+
"generatedAt": "2026-07-15T18:51:29.628Z"
3535
}

0 commit comments

Comments
 (0)