Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorSteve Moser <contact@stevemoser.org>2019-02-19 13:05:54 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-02-19 13:05:54 +0300
commit3731f0d271d19be4876a4cb5672c18fda2baec14 (patch)
treed50b607be3e26207abc8a36400c909a0d6afd064 /site
parentbe380572fb7a252cf86538638e560a907ca8ce33 (diff)
Remove `--save` option from `npm i` as it isn't required anymore (#28302)
As of npm 5.0.0, installed modules are added as a dependency by default, so the --save option is no longer needed. The other save options still exist and are listed in the documentation for npm install.
Diffstat (limited to 'site')
-rw-r--r--site/docs/4.3/getting-started/webpack.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/4.3/getting-started/webpack.md b/site/docs/4.3/getting-started/webpack.md
index ad4fa2f3ab..14f3a6481f 100644
--- a/site/docs/4.3/getting-started/webpack.md
+++ b/site/docs/4.3/getting-started/webpack.md
@@ -28,7 +28,7 @@ import 'bootstrap/js/dist/alert';
Bootstrap is dependent on [jQuery](https://jquery.com/) and [Popper](https://popper.js.org/),
these are defined as `peerDependencies`, this means that you will have to make sure to add both of them
-to your `package.json` using `npm install --save jquery popper.js`.
+to your `package.json` using `npm install jquery popper.js`.
## Importing Styles