Skip to content

Commit 2388db5

Browse files
committed
Fix bundle output and ignore compiled files
Switch from --outfile to --outdir in bun build to fix output not being written to client/out/. Update .gitignore, .vscodeignore, and .oxfmtrc.json to properly handle compiled output directories.
1 parent c39a12a commit 2388db5

11 files changed

Lines changed: 215 additions & 20660 deletions

File tree

.claude/settings.local.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
"Bash(bunx oxfmt:*)",
2121
"Bash(make checkformat:*)",
2222
"Bash(make format:*)",
23-
"Bash(gh run:*)"
23+
"Bash(gh run:*)",
24+
"Bash(bunx vsce:*)",
25+
"Bash(bun build:*)"
2426
]
2527
}
2628
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DS_Store
2-
out
2+
client/out
33
node_modules
44

55
*.tsbuildinfo

.oxfmtrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"printWidth": 80,
33
"sortPackageJson": false,
4-
"ignorePatterns": ["client/src/extension.js"]
4+
"ignorePatterns": ["client/src/extension.js", "**/out/**"]
55
}

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ contributing.md
77
.github/**
88
node_modules/.bin
99
client/node_modules
10+
client/src/**
1011
_opam
1112
_build
1213
Makefile

0 commit comments

Comments
 (0)