diff options
| author | 2023-07-22 16:45:45 -0700 | |
|---|---|---|
| committer | 2023-07-22 16:45:45 -0700 | |
| commit | b17b61b8c6854657177dbdc23fad8ea98f4e779f (patch) | |
| tree | 2d131ec9446bb7b02c9c97e7766c8d652c2e0c2e /src/js/private.d.ts | |
| parent | 27c88c8046ca9f815b9f211c29002e47123b4544 (diff) | |
| download | bun-b17b61b8c6854657177dbdc23fad8ea98f4e779f.tar.gz bun-b17b61b8c6854657177dbdc23fad8ea98f4e779f.tar.zst bun-b17b61b8c6854657177dbdc23fad8ea98f4e779f.zip | |
fix path.format for `vite build` (#3734)
* fix path.format for vite
* Update path.test.js
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to '')
| -rw-r--r-- | src/js/private.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/js/private.d.ts b/src/js/private.d.ts index 9ca25935d..eae2047fb 100644 --- a/src/js/private.d.ts +++ b/src/js/private.d.ts @@ -95,6 +95,7 @@ declare module "bun" { }; function fs(): BunFS; function _Os(): typeof import("node:os"); + function _Path(isWindows?: boolean): typeof import("node:path"); function jest(): typeof import("bun:test"); var main: string; var tty: Array<{ hasColors: boolean }>; |
