This commit is contained in:
Dax Raad
2025-05-20 22:00:00 -04:00
parent 9b564f0b73
commit 2860a2bb1a
11 changed files with 505 additions and 173 deletions

View File

@@ -12,6 +12,7 @@ export namespace Log {
};
export function file(directory: string) {
return;
const out = Bun.file(
path.join(AppPath.data(directory), "opencode.out.log"),
).writer();

5
js/src/util/scrap.ts Normal file
View File

@@ -0,0 +1,5 @@
export const foo: string = "42";
export function dummyFunction(): void {
console.log("This is a dummy function");
}