Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): fix styling issues on docs website #453

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
chore(docs): Add how to install all deps when NODE_ENV=production
PR-URL: #232
Credit: @mugli
Close: #232
Reviewed-by: @claudiahdz
  • Loading branch information
mugli authored and claudiahdz committed Nov 13, 2019
commit 55de8a16058ee33b90bee7710c7a86e674529d19
4 changes: 3 additions & 1 deletion docs/content/cli-commands/npm-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ after packing it up into a tarball (b).

With the `--production` flag (or when the `NODE_ENV` environment variable
is set to `production`), npm will not install modules listed in
`devDependencies`.
`devDependencies`. To install all modules listed in both `dependencies`
and `devDependencies` when `NODE_ENV` environment variable is set to `production`,
you can use `--production=false`.

> NOTE: The `--production` flag has no particular meaning when adding a
dependency to a project.
Expand Down