Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
packages/opencode/src/tests/fixtures/claustrum-golden/* -text
1 change: 1 addition & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"ignoreUnknown": true,
"includes": [
"packages/*/src/**",
"!packages/opencode/src/tests/fixtures/claustrum-golden",
"!packages/opencode/src/tui-compiled",
"packages/*/*.json",
"packages/*/scripts/**",
Expand Down
9 changes: 6 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ pre-commit:
commands:
biome:
glob: "*.{ts,js,json}"
run: bunx biome check {staged_files}
# --no-errors-on-unmatched: a commit touching only biome-ignored paths
# (e.g. the byte-pinned claustrum golden fixtures) must not fail the hook.
run: bunx biome check --no-errors-on-unmatched {staged_files}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"dev": "bun scripts/dev.ts",
"dev:clean": "bun scripts/dev-clean.ts",
"extract": "bun scripts/extract-system-prompt.ts",
"check:claustrum-golden": "bun scripts/check-claustrum-golden.ts",
"analyze:cache": "node scripts/analyze-cache-usage.mjs",
"test": "bun run build && cd packages/opencode && bun run test",
"test:e2e": "cd packages/core && bun run build && cd ../.. && bun run --cwd packages/e2e-tests test",
Expand Down
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"prepublishOnly": "bun run build"
},
"dependencies": {
"@cortexkit/subc-client": "^0.8.1",
"xxhash-wasm": "^1.1.0"
}
}
Loading
Loading