Skip to content

Commit

Permalink
chore: [#1272] Fixes problem with the release
Browse files Browse the repository at this point in the history
  • Loading branch information
capricorn86 committed Feb 23, 2024
1 parent ea239c8 commit d4ef220
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ jobs:

- name: Configures Git
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "$(git log --format='%ae' HEAD^!)"
git config --global user.name "${{ secrets.GIT_USER_NAME }}"
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
- name: Creates release branch
run: |
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
4 changes: 1 addition & 3 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ We are very happy that you would like to contribute. In this guide you will find

### Install

We need to add "--legacy-peer-deps" to the install as a workaround to be able to install Vitest. Otherwise we get an "Cannot set properties of null (setting 'parent')" error as Vitest has "happy-dom" as peer dependency. Hopefully we can find a better solution in the future.

```bash
npm install --legacy-peer-deps
npm install
```

### Compile
Expand Down

0 comments on commit d4ef220

Please sign in to comment.