diff options
author | 2023-09-14 13:32:03 +0800 | |
---|---|---|
committer | 2023-09-13 22:32:03 -0700 | |
commit | 8ae9aeea6becd8e34c45885943cfe3643beb68c9 (patch) | |
tree | ce92b57eb5a9089b1bf31264d03d31d7abe49367 /docs | |
parent | 4ebed280dc5532b93c1e28ad0b33a7a315ab3b65 (diff) | |
download | bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.tar.gz bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.tar.zst bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.zip |
Remove the ability to configure lockfile. (#5335)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/cli/bun-install.md | 9 | ||||
-rw-r--r-- | docs/install/lockfile.md | 6 | ||||
-rw-r--r-- | docs/runtime/configuration.md | 6 |
3 files changed, 0 insertions, 21 deletions
diff --git a/docs/cli/bun-install.md b/docs/cli/bun-install.md index e705a2172..3efe2da7f 100644 --- a/docs/cli/bun-install.md +++ b/docs/cli/bun-install.md @@ -89,12 +89,6 @@ disableManifest = false # Note: it does not load the lockfile, it just converts bun.lockb into a yarn.lock print = "yarn" -# Path to read bun.lockb from -path = "bun.lockb" - -# Path to save bun.lockb to -savePath = "bun.lockb" - # Save the lockfile to disk save = true @@ -142,8 +136,6 @@ export interface Cache { export interface Lockfile { print?: "yarn"; - path: string; - savePath: string; save: boolean; } ``` @@ -156,7 +148,6 @@ Environment variables have a higher priority than `bunfig.toml`. | -------------------------------- | ------------------------------------------------------------- | | BUN_CONFIG_REGISTRY | Set an npm registry (default: <https://registry.npmjs.org>) | | BUN_CONFIG_TOKEN | Set an auth token (currently does nothing) | -| BUN_CONFIG_LOCKFILE_SAVE_PATH | File path to save the lockfile to (default: bun.lockb) | | BUN_CONFIG_YARN_LOCKFILE | Save a Yarn v1-style yarn.lock | | BUN_CONFIG_LINK_NATIVE_BINS | Point `bin` in package.json to a platform-specific dependency | | BUN_CONFIG_SKIP_SAVE_LOCKFILE | Don’t save a lockfile | diff --git a/docs/install/lockfile.md b/docs/install/lockfile.md index c7306c1b9..f8e3001ca 100644 --- a/docs/install/lockfile.md +++ b/docs/install/lockfile.md @@ -79,12 +79,6 @@ print = "yarn" ```toml [install.lockfile] -# path to read bun.lockb from -path = "bun.lockb" - -# path to save bun.lockb to -savePath = "bun.lockb" - # whether to save the lockfile to disk save = true diff --git a/docs/runtime/configuration.md b/docs/runtime/configuration.md index df2fc5199..d7a1d386d 100644 --- a/docs/runtime/configuration.md +++ b/docs/runtime/configuration.md @@ -148,12 +148,6 @@ To configure lockfile behavior: # path to read bun.lockb from path = "bun.lockb" -# path to save bun.lockb to -savePath = "bun.lockb" - -# whether to save the lockfile to disk -save = true - # whether to save a non-Bun lockfile alongside bun.lockb # only "yarn" is supported print = "yarn" |