just-binary 3.0.0 → 3.0.1

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.
Files changed (23) hide show
  1. package/dist/bin/chunks/{chunk-FZXGAGSU.js → chunk-4Y3GINAY.js} +10 -10
  2. package/dist/bin/{shell/chunks/chunk-PYIWPSII.js → chunks/chunk-ASU2EQWZ.js} +18 -18
  3. package/dist/bin/{shell/chunks/flag-coverage-7AQE3UPG.js → chunks/flag-coverage-JBJRZ3PO.js} +1 -1
  4. package/dist/bin/{shell/chunks/gzip-PT23FGTW.js → chunks/gzip-AKQBQW7Y.js} +1 -1
  5. package/dist/bin/chunks/{rg-D5WXPSFJ.js → rg-LTQYHOCO.js} +1 -1
  6. package/dist/bin/chunks/worker.js +5 -1
  7. package/dist/bin/just-bash.js +2 -2
  8. package/dist/bin/shell/chunks/{chunk-FZXGAGSU.js → chunk-4Y3GINAY.js} +10 -10
  9. package/dist/bin/{chunks/chunk-PYIWPSII.js → shell/chunks/chunk-ASU2EQWZ.js} +18 -18
  10. package/dist/bin/{chunks/flag-coverage-7AQE3UPG.js → shell/chunks/flag-coverage-JBJRZ3PO.js} +1 -1
  11. package/dist/bin/{chunks/gzip-PT23FGTW.js → shell/chunks/gzip-AKQBQW7Y.js} +1 -1
  12. package/dist/bin/shell/chunks/{rg-D5WXPSFJ.js → rg-LTQYHOCO.js} +1 -1
  13. package/dist/bin/shell/shell.js +216 -216
  14. package/dist/browser.d.ts +4 -0
  15. package/dist/bundle/browser.js +486 -486
  16. package/dist/bundle/chunks/{chunk-YANZPHZ3.js → chunk-M5Z2PSET.js} +18 -18
  17. package/dist/bundle/chunks/{chunk-E7BAZEZG.js → chunk-NDPSDM3Q.js} +10 -10
  18. package/dist/bundle/chunks/{flag-coverage-VMMEL7EH.js → flag-coverage-FK7Z2EY4.js} +1 -1
  19. package/dist/bundle/chunks/{gzip-OUHELY5D.js → gzip-BYGAV4XY.js} +1 -1
  20. package/dist/bundle/chunks/{rg-PML6WNNK.js → rg-RA3U4BVJ.js} +1 -1
  21. package/dist/bundle/chunks/worker.js +5 -1
  22. package/dist/bundle/index.js +2 -2
  23. package/package.json +1 -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";