just-bash 2.14.0 → 2.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/chunks/chunk-NTW6IA45.js +2 -0
- package/dist/bin/chunks/chunk-VRUXUVWB.js +63 -0
- package/dist/bin/chunks/{chunk-3KAVXQP4.js → chunk-XXCTETRW.js} +2 -2
- package/dist/bin/{shell/chunks/curl-SRTMGOVV.js → chunks/curl-2DCNBIKJ.js} +8 -8
- package/dist/bin/{shell/chunks/flag-coverage-LBMWMYOO.js → chunks/flag-coverage-NSXW5TJP.js} +1 -1
- package/dist/bin/chunks/{js-exec-BDQGEAU6.js → js-exec-CAD5RWEY.js} +1 -1
- package/dist/bin/chunks/js-exec-worker.js +11 -1
- package/dist/bin/{shell/chunks/python3-KFZH67GD.js → chunks/python3-3423HR2R.js} +1 -1
- package/dist/bin/chunks/{tar-TOWX2TDU.js → tar-DNUNEW4Z.js} +1 -1
- package/dist/bin/chunks/worker.js +20 -2
- package/dist/bin/just-bash.js +262 -262
- package/dist/bin/shell/chunks/chunk-NTW6IA45.js +2 -0
- package/dist/bin/shell/chunks/chunk-VRUXUVWB.js +63 -0
- package/dist/bin/shell/chunks/{chunk-3KAVXQP4.js → chunk-XXCTETRW.js} +2 -2
- package/dist/bin/{chunks/curl-SRTMGOVV.js → shell/chunks/curl-2DCNBIKJ.js} +8 -8
- package/dist/bin/{chunks/flag-coverage-LBMWMYOO.js → shell/chunks/flag-coverage-NSXW5TJP.js} +1 -1
- package/dist/bin/shell/chunks/{js-exec-HPXZV7UJ.js → js-exec-DYEFS64P.js} +1 -1
- package/dist/bin/{chunks/python3-VCIXXAXF.js → shell/chunks/python3-D3QLNTTN.js} +1 -1
- package/dist/bin/shell/chunks/{tar-TOWX2TDU.js → tar-DNUNEW4Z.js} +1 -1
- package/dist/bin/shell/shell.js +94 -94
- package/dist/browser.d.ts +1 -0
- package/dist/bundle/browser.js +568 -568
- package/dist/bundle/chunks/chunk-BRGMQKJV.js +62 -0
- package/dist/bundle/chunks/{chunk-S4EYC6T6.js → chunk-I57KEIP3.js} +2 -2
- package/dist/bundle/chunks/chunk-R6VWJ2ZL.js +1 -0
- package/dist/bundle/chunks/{curl-COE4TZE6.js → curl-47BFPSFW.js} +8 -8
- package/dist/bundle/chunks/{flag-coverage-LMTH7T5F.js → flag-coverage-QT4N2Z44.js} +1 -1
- package/dist/bundle/chunks/{js-exec-4CW5N6RM.js → js-exec-M6UR76J5.js} +1 -1
- package/dist/bundle/chunks/js-exec-worker.js +11 -1
- package/dist/bundle/chunks/{python3-SG3DOKBZ.js → python3-AUFTPCU6.js} +1 -1
- package/dist/bundle/chunks/{tar-232RCEFK.js → tar-ANUBEFJY.js} +1 -1
- package/dist/bundle/chunks/worker.js +20 -2
- package/dist/bundle/index.cjs +722 -722
- package/dist/bundle/index.js +166 -166
- package/dist/commands/tar/bzip2-compress.d.ts +17 -0
- package/dist/commands/worker-bridge/sync-backend.d.ts +1 -0
- package/dist/network/types.d.ts +2 -1
- package/package.json +7 -7
- package/dist/bin/chunks/chunk-WS6P4H4S.js +0 -63
- package/dist/bin/shell/chunks/chunk-WS6P4H4S.js +0 -63
- package/dist/bundle/chunks/chunk-ZXL7TQLN.js +0 -62
package/dist/browser.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export type { CustomCommand, LazyCommand } from "./custom-commands.js";
|
|
|
17
17
|
export { defineCommand } from "./custom-commands.js";
|
|
18
18
|
export { InMemoryFs } from "./fs/in-memory-fs/index.js";
|
|
19
19
|
export type { BufferEncoding, CpOptions, DirectoryEntry, FileContent, FileEntry, FileInit, FileSystemFactory, FsEntry, FsStat, InitialFiles, LazyFileEntry, LazyFileProvider, MkdirOptions, RmOptions, SymlinkEntry, } from "./fs/interface.js";
|
|
20
|
+
export { MountableFs, type MountableFsOptions, type MountConfig, } from "./fs/mountable-fs/index.js";
|
|
20
21
|
export type { NetworkConfig } from "./network/index.js";
|
|
21
22
|
export { NetworkAccessDeniedError, RedirectNotAllowedError, TooManyRedirectsError, } from "./network/index.js";
|
|
22
23
|
export type { BashExecResult, Command, CommandContext, ExecResult, IFileSystem, } from "./types.js";
|