webpack/_SETUP.md

29 lines
478 B
Markdown
Raw Normal View History

# Setup
At webpack we use `yarn` to execute commands.
If you already have `yarn` installed, do: `yarn setup`. This will complete all required steps.
If not, do: `npm run setup`, the setup will also install `yarn` for you.
That's all.
## Setup manually
Setup your local webpack repository
```bash
git clone https://github.com/webpack/webpack.git
cd webpack
npm install -g yarn
2018-03-26 16:07:45 +02:00
yarn
yarn link
yarn link webpack
```
To run the entire test suite use:
```bash
yarn test
```