build!: use pnpm (#820)

BREAKING CHANGE: This project now uses pnpm instead of yarn
This commit is contained in:
Michael Kriese 2024-02-08 14:19:58 +01:00 committed by GitHub
parent fd4ca43dc2
commit 1639f1a892
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 3839 additions and 4744 deletions

View file

@ -1,4 +1,7 @@
{
"*.{ts,tsx,js,jsx,json}": "eslint --fix",
"*": "prettier --ignore-unknown --write"
"*.{ts,tsx,js,jsx,json}": [
"eslint --cache --fix",
"prettier --cache --write"
],
"!*.{ts,tsx,js,jsx,json}": "prettier --cache --ignore-unknown --write"
}