diff options
| author | Dax Raad <[email protected]> | 2025-05-20 22:00:00 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | 2860a2bb1a1f227c26b02f1325454ab79d6f6451 (patch) | |
| tree | 2a52a5c159025c6ff6854af2995c24c4d7d46b77 /js/src/util | |
| parent | 9b564f0b73d099d40c79517213211ba81b3312c6 (diff) | |
| download | opencode-2860a2bb1a1f227c26b02f1325454ab79d6f6451.tar.gz opencode-2860a2bb1a1f227c26b02f1325454ab79d6f6451.zip | |
sync
Diffstat (limited to 'js/src/util')
| -rw-r--r-- | js/src/util/log.ts | 1 | ||||
| -rw-r--r-- | js/src/util/scrap.ts | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/js/src/util/log.ts b/js/src/util/log.ts index c43514ef6..d05f42dc2 100644 --- a/js/src/util/log.ts +++ b/js/src/util/log.ts @@ -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(); diff --git a/js/src/util/scrap.ts b/js/src/util/scrap.ts new file mode 100644 index 000000000..16005acdc --- /dev/null +++ b/js/src/util/scrap.ts @@ -0,0 +1,5 @@ +export const foo: string = "42"; + +export function dummyFunction(): void { + console.log("This is a dummy function"); +} |
