Sha256: 3b03beae5c17b8298676e742eda967087c63b67dbaa646c4b90252f9f7b3bd76

Contents?: true

Size: 697 Bytes

Versions: 9

Compression:

Stored size: 697 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

9 entries across 9 versions & 1 rubygems

Version Path
vite_rails-1.0.8 CONTRIBUTING.md
vite_rails-1.0.7 CONTRIBUTING.md
vite_rails-1.0.6 CONTRIBUTING.md
vite_rails-1.0.5 CONTRIBUTING.md
vite_rails-1.0.4 CONTRIBUTING.md
vite_rails-1.0.3 CONTRIBUTING.md
vite_rails-1.0.2 CONTRIBUTING.md
vite_rails-1.0.1 CONTRIBUTING.md
vite_rails-1.0.0 CONTRIBUTING.md