Skip to content

Commit 27a6e8d

Browse files
committed
docs: update documentation and build system for TypeScript
- README.md: Updated for TypeScript implementation, Bun runtime, new CLI flags (-B for build model), environment variables - AGENTS.md: Updated code structure, examples, build commands - Makefile: Updated for Bun build system - .gitignore: Updated for Node/Bun artifacts - opencoder.json.example: Example config with buildModel - test_helpers/: Updated mock scripts Signed-off-by: leocavalcante <[email protected]>
1 parent 8d4757d commit 27a6e8d

File tree

7 files changed

+402
-299
lines changed

7 files changed

+402
-299
lines changed

.gitignore

Lines changed: 15 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,19 @@
11
# OpenCoder
22
.opencoder/
33

4-
# Zig build artifacts
5-
.zig-cache/
6-
zig-out/
7-
8-
# Build directories
9-
build/
4+
# Bun
5+
node_modules/
6+
bun.lockb
7+
8+
# Build artifacts
9+
opencoder
10+
opencoder-*
11+
opencoder.exe
1012
dist/
1113

12-
# Object files
13-
*.o
14-
*.obj
15-
16-
# Executables
17-
*.exe
18-
*.out
19-
*.app
20-
21-
# Debug files
22-
*.dSYM/
23-
*.pdb
14+
# Zig build artifacts (legacy)
15+
.zig-cache/
16+
zig-out/
2417

2518
# IDE and editor files
2619
.vscode/
@@ -36,12 +29,11 @@ dist/
3629

3730
# Coverage reports
3831
coverage/
39-
*.profraw
40-
*.profdata
4132

4233
# Testing artifacts
4334
test-results/
4435

45-
# Dependencies (if any)
46-
lib/
47-
vendor/
36+
# Debug files
37+
*.dSYM/
38+
*.pdb
39+
*.map

0 commit comments

Comments
 (0)