diff options
author | 2023-02-26 18:37:32 -0600 | |
---|---|---|
committer | 2023-02-26 16:37:32 -0800 | |
commit | f420e81e85e9597cb96799d313b75dc7da16edd6 (patch) | |
tree | 18676dd63185c631a215d313417a4fa4255c7c96 | |
parent | 5d296f6228175097e59848416b1a3844bde940b1 (diff) | |
download | bun-f420e81e85e9597cb96799d313b75dc7da16edd6.tar.gz bun-f420e81e85e9597cb96799d313b75dc7da16edd6.tar.zst bun-f420e81e85e9597cb96799d313b75dc7da16edd6.zip |
docs(configuration): update misleading comment (#2205)
The comment was for peer dependencies and not dev dependencies.
-rw-r--r-- | docs/project/configuration.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/project/configuration.md b/docs/project/configuration.md index 08eeb13ca..c70689b94 100644 --- a/docs/project/configuration.md +++ b/docs/project/configuration.md @@ -32,7 +32,7 @@ optional = true # whether to install devDependencies dev = true -# whether to install devDependencies +# whether to install peerDependencies peer = false # equivalent to `--production` flag |