1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 11:36:46 +00:00

chore: switch from npm to pnpm (#786)

Co-authored-by: Elias Schneider <login@eliasschneider.com>
This commit is contained in:
Kyle Mendell
2025-08-10 12:16:30 -05:00
committed by GitHub
parent 484c2f6ef2
commit 7bfe4834d0
14 changed files with 4084 additions and 6083 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "pocket-id-repo",
"private": true,
"workspaces": [
"frontend",
"tests"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter pocket-id-frontend dev",
"build": "pnpm --filter pocket-id-frontend build",
"test": "pnpm --filter pocket-id-tests test",
"format": "pnpm --filter pocket-id-frontend format"
}
}