diff options
author | 2023-10-12 16:33:37 -0700 | |
---|---|---|
committer | 2023-10-12 16:33:37 -0700 | |
commit | c9e1c6455fadd55a07eabcd9128541a1d349fff7 (patch) | |
tree | 44f8d18ff63fe0943fd410646295419ac4ff6da1 | |
parent | c12140f2aab40b8c8e548312c030f00adcde3ec1 (diff) | |
download | bun-c9e1c6455fadd55a07eabcd9128541a1d349fff7.tar.gz bun-c9e1c6455fadd55a07eabcd9128541a1d349fff7.tar.zst bun-c9e1c6455fadd55a07eabcd9128541a1d349fff7.zip |
Tweaks
Diffstat (limited to '')
-rw-r--r-- | src/install/install.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index d56a51c2a..0b11ec319 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -6039,8 +6039,8 @@ pub const PackageManager = struct { clap.parseParam("-c, --config <STR>? Specify path to config file (bunfig.toml)") catch unreachable, clap.parseParam("-y, --yarn Write a yarn.lock file (yarn v1)") catch unreachable, clap.parseParam("-p, --production Don't install devDependencies") catch unreachable, - clap.parseParam("--no-save Don't save a lockfile") catch unreachable, - clap.parseParam("--save Save to package.json") catch unreachable, + clap.parseParam("--no-save Don't update package.json or save a lockfile") catch unreachable, + clap.parseParam("--save Save to package.json (true by default)") catch unreachable, clap.parseParam("--dry-run Don't install anything") catch unreachable, clap.parseParam("--frozen-lockfile Disallow changes to lockfile") catch unreachable, clap.parseParam("-f, --force Always request the latest versions from the registry & reinstall all dependencies") catch unreachable, |