Skip to content

Commit

Permalink
chore(deps): update dependency vite to v5 (#674)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 21, 2023
1 parent 7e0f83f commit 8947cc4
Show file tree
Hide file tree
Showing 4 changed files with 794 additions and 598 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Skip any package file whose path matches one of these.
*/
ignorePaths: ['packages/**/package.json'],
ignorePaths: ['packages/**/package.json', 'tools/package.json'],
/**
* Labels to set in the Pull Request.
*/
Expand Down
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,17 @@ git switch -c hotfix/<fix-name> main
git checkout -b hotfix/<fix-name> main
```

- For changes related to tests and documentation we recommend a manual branch creation from `develop`:
- For changes related to tests and documentation we recommend:

```bash
git switch -c tests/<test-change> develop
git checkout -b tests/<test-change> develop
git switch -c tests/<test-change> main
git checkout -b tests/<test-change> main
# or
git switch -c docs/<doc-change> develop
git checkout -b docs/<doc-change> develop
git switch -c docs/<doc-change> main
git checkout -b docs/<doc-change> main
```

- Other branch naming conventions (**_all of them should branch off from the `develop` branch_**):
- Other branch naming conventions (**_all of them should branch off from the `main` branch_**):
- **chore**: changes to the build process or auxiliary tools and libraries such as documentation generation
- **style**: changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc)
- **refactor**: a code change that neither fixes a bug nor adds a feature
Expand Down
Loading

0 comments on commit 8947cc4

Please sign in to comment.