Extract setup infos from Contributing.md into separate setup.md for visiblity reasons

This commit is contained in:
Admin 2018-03-24 19:44:11 +01:00
parent 7f11210cff
commit 68a11fd1bc
2 changed files with 19 additions and 14 deletions

View File

@ -25,20 +25,7 @@ documentation pages:
## Setup
```bash
git clone https://github.com/webpack/webpack.git
cd webpack
npm install -g yarn
yarn install
yarn link
yarn link webpack
```
To run the entire test suite use:
```bash
yarn test
```
[Setup your local webpack repository](_SETUP.md)
## Submitting Changes

18
_SETUP.md Normal file
View File

@ -0,0 +1,18 @@
# Setup
Setup your local webpack repository
```bash
git clone https://github.com/webpack/webpack.git
cd webpack
npm install -g yarn
yarn install
yarn link
yarn link webpack
```
To run the entire test suite use:
```bash
yarn test
```