Sha256: 929b5933fdc86b2aeeb5f2cb8215e2e485dc2b04285f43eb9c2ca3018f6bdceb

Contents?: true

Size: 696 Bytes

Versions: 10

Compression:

Stored size: 696 Bytes

Contents

## Setting Up a Development Environment

1. Install [Yarn](https://yarnpkg.com/)

2. Run the following commands to set up the development environment.
```
bundle install
yarn
```

## Making sure your changes pass all tests
There are a number of automated checks which run on GitHub Actions when a pull request is created.
You can run those checks on your own locally to make sure that your changes would not break the CI build.

### 1. Check the code for JavaScript style violations
```
yarn lint
```

### 2. Check the code for Ruby style violations
```
bundle exec rubocop
```

### 3. Run the JavaScript test suite
```
yarn test
```

### 4. Run the Ruby test suite
```
bundle exec rake test
```

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
webpacker-6.0.0.rc.5 CONTRIBUTING.md
webpacker-6.0.0.rc.4 CONTRIBUTING.md
webpacker-6.0.0.rc.3 CONTRIBUTING.md
webpacker-6.0.0.rc.2 CONTRIBUTING.md
webpacker-6.0.0.rc.1 CONTRIBUTING.md
webpacker-6.0.0.beta.7 CONTRIBUTING.md
webpacker-6.0.0.beta.6 CONTRIBUTING.md
webpacker-6.0.0.beta.5 CONTRIBUTING.md
webpacker-6.0.0.beta.4 CONTRIBUTING.md
webpacker-6.0.0.beta.3 CONTRIBUTING.md