diff options
| author | Dax Raad <[email protected]> | 2025-05-28 17:24:15 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-28 17:24:21 -0400 |
| commit | e88264075a8b67c46b57d13db8488f4f01e7f9f1 (patch) | |
| tree | 74aeb70ee3625355ab5c0440451505ca10997a80 /js/src/app | |
| parent | 041a080a139a06402d9c0ce4d37622f9eb49e729 (diff) | |
| download | opencode-e88264075a8b67c46b57d13db8488f4f01e7f9f1.tar.gz opencode-e88264075a8b67c46b57d13db8488f4f01e7f9f1.zip | |
sync
Diffstat (limited to 'js/src/app')
| -rw-r--r-- | js/src/app/config.ts | 2 | ||||
| -rw-r--r-- | js/src/app/index.ts | 2 | ||||
| -rw-r--r-- | js/src/app/path.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/js/src/app/config.ts b/js/src/app/config.ts index 3ebb8734b..1f1491540 100644 --- a/js/src/app/config.ts +++ b/js/src/app/config.ts @@ -1,4 +1,4 @@ -import path from "node:path"; +import path from "path"; import { Log } from "../util/log"; import { z } from "zod"; import { LLM } from "../llm/llm"; diff --git a/js/src/app/index.ts b/js/src/app/index.ts index b6713d930..f0d371a34 100644 --- a/js/src/app/index.ts +++ b/js/src/app/index.ts @@ -1,4 +1,4 @@ -import fs from "node:fs/promises"; +import fs from "fs/promises"; import { AppPath } from "./path"; import { Log } from "../util/log"; import { Context } from "../util/context"; diff --git a/js/src/app/path.ts b/js/src/app/path.ts index 7621cae3b..972d18c41 100644 --- a/js/src/app/path.ts +++ b/js/src/app/path.ts @@ -1,4 +1,4 @@ -import path from "node:path"; +import path from "path"; export namespace AppPath { export function data(input: string) { |
