@stainless-code/codemap 0.1.0 → 0.1.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/CHANGELOG.md +6 -0
- package/dist/index.mjs +1 -1
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @stainless-code/codemap
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1](https://github.com/stainless-code/codemap/pull/1) [`b366c53`](https://github.com/stainless-code/codemap/commit/b366c532999800a1c0bb6e81aa68e6e8867baf83) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Consolidate docs (index hub, packaging/Releases, benchmark vs external root), point `.changeset/README` at packaging, and add `clean` / `check-updates` npm scripts.
|
|
8
|
+
|
|
3
9
|
## 0.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { fileURLToPath } from "node:url";
|
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region src/version.ts
|
|
10
10
|
/** Package version from `package.json` (inlined at build time). */
|
|
11
|
-
const CODEMAP_VERSION = "0.1.
|
|
11
|
+
const CODEMAP_VERSION = "0.1.1";
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region src/cli/bootstrap.ts
|
|
14
14
|
/** Printed for `codemap --help` / `-h` (must run before config or DB access). */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stainless-code/codemap",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Query your codebase — structural SQLite index for AI agents",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agents",
|
|
@@ -46,6 +46,8 @@
|
|
|
46
46
|
"build": "tsdown",
|
|
47
47
|
"changeset": "changeset",
|
|
48
48
|
"check": "bun run build && bun run --parallel format:check lint:ci test typecheck",
|
|
49
|
+
"check-updates": "bun update -i --latest",
|
|
50
|
+
"clean": "git clean -xdf -e .env -e .codemap.db -e .codemap.db-wal -e .codemap.db-shm",
|
|
49
51
|
"dev": "bun src/index.ts",
|
|
50
52
|
"fix": "bun run lint:fix && bun run format",
|
|
51
53
|
"format": "oxfmt",
|
|
@@ -67,7 +69,7 @@
|
|
|
67
69
|
"better-sqlite3": "^12.8.0",
|
|
68
70
|
"fast-glob": "^3.3.3",
|
|
69
71
|
"lightningcss": "^1.32.0",
|
|
70
|
-
"oxc-parser": "^0.
|
|
72
|
+
"oxc-parser": "^0.124.0",
|
|
71
73
|
"oxc-resolver": "^11.19.1",
|
|
72
74
|
"zod": "^4.3.6"
|
|
73
75
|
},
|
|
@@ -77,11 +79,11 @@
|
|
|
77
79
|
"@types/better-sqlite3": "^7.6.13",
|
|
78
80
|
"@types/bun": "^1.3.11",
|
|
79
81
|
"@types/node": "^25.5.2",
|
|
80
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
82
|
+
"@typescript/native-preview": "^7.0.0-dev.20260407.1",
|
|
81
83
|
"husky": "^9.1.7",
|
|
82
84
|
"lint-staged": "^16.4.0",
|
|
83
|
-
"oxfmt": "^0.
|
|
84
|
-
"oxlint": "^1.
|
|
85
|
+
"oxfmt": "^0.44.0",
|
|
86
|
+
"oxlint": "^1.59.0",
|
|
85
87
|
"tsdown": "^0.21.7",
|
|
86
88
|
"typescript": "^6.0.2"
|
|
87
89
|
},
|