just-binary 3.0.0 → 3.0.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/README.md +1 -1
- package/dist/AGENTS.md +1 -1
- package/dist/bin/chunks/{chunk-FZXGAGSU.js → chunk-4Y3GINAY.js} +10 -10
- package/dist/bin/{shell/chunks/chunk-PYIWPSII.js → chunks/chunk-ASU2EQWZ.js} +18 -18
- package/dist/bin/chunks/chunk-H7TGYILF.js +3 -0
- package/dist/bin/chunks/chunk-XSBNCA43.js +7 -0
- package/dist/bin/chunks/flag-coverage-O3TGZMW3.js +2 -0
- package/dist/bin/chunks/{gzip-PT23FGTW.js → gzip-AKQBQW7Y.js} +1 -1
- package/dist/bin/{shell/chunks/rg-D5WXPSFJ.js → chunks/rg-LTQYHOCO.js} +1 -1
- package/dist/bin/chunks/{seq-6C6VEGIG.js → seq-IDAAUGIL.js} +1 -1
- package/dist/bin/chunks/worker.js +5 -1
- package/dist/bin/chunks/yes-A2LPETVU.js +2 -0
- package/dist/bin/just-bash.js +2 -2
- package/dist/bin/shell/chunks/{chunk-FZXGAGSU.js → chunk-4Y3GINAY.js} +10 -10
- package/dist/bin/{chunks/chunk-PYIWPSII.js → shell/chunks/chunk-ASU2EQWZ.js} +18 -18
- package/dist/bin/shell/chunks/chunk-H7TGYILF.js +3 -0
- package/dist/bin/shell/chunks/chunk-XSBNCA43.js +7 -0
- package/dist/bin/shell/chunks/flag-coverage-O3TGZMW3.js +2 -0
- package/dist/bin/shell/chunks/{gzip-PT23FGTW.js → gzip-AKQBQW7Y.js} +1 -1
- package/dist/bin/{chunks/rg-D5WXPSFJ.js → shell/chunks/rg-LTQYHOCO.js} +1 -1
- package/dist/bin/shell/chunks/{seq-6C6VEGIG.js → seq-IDAAUGIL.js} +1 -1
- package/dist/bin/shell/chunks/yes-A2LPETVU.js +2 -0
- package/dist/bin/shell/shell.js +216 -216
- package/dist/browser.d.ts +4 -0
- package/dist/bundle/browser.js +636 -635
- package/dist/bundle/chunks/chunk-6RAG3BOS.js +2 -0
- package/dist/bundle/chunks/{chunk-YANZPHZ3.js → chunk-M5Z2PSET.js} +18 -18
- package/dist/bundle/chunks/{chunk-E7BAZEZG.js → chunk-NDPSDM3Q.js} +10 -10
- package/dist/bundle/chunks/chunk-R7SSLDTN.js +6 -0
- package/dist/bundle/chunks/flag-coverage-33IDWH3V.js +1 -0
- package/dist/bundle/chunks/{gzip-OUHELY5D.js → gzip-BYGAV4XY.js} +1 -1
- package/dist/bundle/chunks/{rg-PML6WNNK.js → rg-RA3U4BVJ.js} +1 -1
- package/dist/bundle/chunks/{seq-UCWX6HDA.js → seq-SXS6YKWX.js} +1 -1
- package/dist/bundle/chunks/worker.js +5 -1
- package/dist/bundle/chunks/yes-2J55KNKF.js +1 -0
- package/dist/bundle/index.js +2 -2
- package/dist/commands/registry.d.ts +1 -1
- package/dist/commands/seq/seq.d.ts +5 -0
- package/dist/commands/yes/yes.d.ts +14 -0
- package/package.json +1 -1
- package/dist/bin/chunks/chunk-HT4IVOYZ.js +0 -7
- package/dist/bin/chunks/flag-coverage-7AQE3UPG.js +0 -2
- package/dist/bin/shell/chunks/chunk-HT4IVOYZ.js +0 -7
- package/dist/bin/shell/chunks/flag-coverage-7AQE3UPG.js +0 -2
- package/dist/bundle/chunks/chunk-OYIATQ5V.js +0 -6
- package/dist/bundle/chunks/flag-coverage-VMMEL7EH.js +0 -1
package/dist/browser.d.ts
CHANGED
|
@@ -17,6 +17,10 @@ export type { CustomCommand, CustomExecResult, LazyCommand, StringExecResult, }
|
|
|
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, 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";
|
|
24
|
+
export { decode, EMPTY, encode } from "./utils/bytes.js";
|
|
25
|
+
export type { ByteStream } from "./utils/stream.js";
|
|
26
|
+
export { CHUNK_SIZE, collectBytes, collectText, concatStreams, drain, emptyStream, fromBytes, fromChunks, fromString, mapChunks, streamChunks, streamLines, teeStream, } from "./utils/stream.js";
|