Skip to content

Commit

Permalink
No need for webpack@beta anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
simon04 committed Jan 31, 2017
1 parent cf46a09 commit 6033cf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/get-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Create a demo directory to try out webpack. [Install webpack](/guides/installati
```bash
mkdir webpack-demo && cd webpack-demo
npm init -y
npm install --save-dev webpack@beta
npm install --save-dev webpack
./node_modules/.bin/webpack --help # Shows a list of valid cli commands
.\node_modules\.bin\webpack --help # For windows users
```
Expand Down
4 changes: 2 additions & 2 deletions content/guides/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The next section tells you how to install webpack locally in a project.
### Local Installation

``` bash
npm install webpack@beta --save-dev
npm install webpack --save-dev

npm install webpack@<version> --save-dev
```
Expand All @@ -41,7 +41,7 @@ T> To run the local installation of webpack you can access its bin version as `n
W> Note that a global webpack installation is not a recommended practice. This locks you down to a specific version of webpack and might fail in projects that use a different version.

``` bash
npm install webpack@beta -g
npm install webpack -g
```

The `webpack` command is now available globally.
Expand Down

0 comments on commit 6033cf9

Please sign in to comment.