diff options
author | 2023-09-14 13:32:03 +0800 | |
---|---|---|
committer | 2023-09-13 22:32:03 -0700 | |
commit | 8ae9aeea6becd8e34c45885943cfe3643beb68c9 (patch) | |
tree | ce92b57eb5a9089b1bf31264d03d31d7abe49367 /docs/cli | |
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/cli')
-rw-r--r-- | docs/cli/bun-install.md | 9 |
1 files changed, 0 insertions, 9 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 | |