chore(frontend): switch from pnpm to npm

This commit is contained in:
sam 2025-04-17 15:03:38 +02:00
parent 1adb26e8b8
commit a89a5b3494
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
8 changed files with 6369 additions and 4249 deletions

View file

@ -3,12 +3,8 @@
"tasks": [
{
"name": "run-prettier",
"command": "pnpm",
"args": [
"prettier",
"-w",
"${staged}"
],
"command": "npx",
"args": ["prettier", "-w", "${staged}"],
"include": [
"Foxnouns.Frontend/**/*.ts",
"Foxnouns.Frontend/**/*.json",
@ -22,13 +18,8 @@
{
"name": "run-csharpier",
"command": "dotnet",
"args": [
"csharpier",
"${staged}"
],
"include": [
"**/*.cs"
]
"args": ["csharpier", "${staged}"],
"include": ["**/*.cs"]
}
]
}