Switch workflows to Bun install/test and update pnpm
This commit is contained in:
parent
c3237dfb64
commit
775956c160
37 changed files with 2618 additions and 113 deletions
14
package.json
14
package.json
|
|
@ -11,9 +11,9 @@
|
|||
"lint": "eslint",
|
||||
"prisma:generate": "prisma generate",
|
||||
"convex:dev": "convex dev",
|
||||
"test": "vitest --run --passWithNoTests",
|
||||
"test:browser": "cross-env VITEST_BROWSER=true vitest --run --browser.headless tests/browser/example.browser.test.ts --passWithNoTests",
|
||||
"test:all": "cross-env VITEST_BROWSER=true vitest --run --passWithNoTests",
|
||||
"test": "bun test",
|
||||
"test:browser": "cross-env VITEST_BROWSER=true bunx vitest --run --browser.headless tests/browser/example.browser.test.ts --passWithNoTests",
|
||||
"test:all": "cross-env VITEST_BROWSER=true bunx vitest --run --passWithNoTests",
|
||||
"auth:seed": "node scripts/seed-auth.mjs",
|
||||
"queues:ensure": "node scripts/ensure-default-queues.mjs",
|
||||
"desktop:dev": "pnpm --filter appsdesktop tauri dev",
|
||||
|
|
@ -87,6 +87,8 @@
|
|||
"@tailwindcss/postcss": "^4",
|
||||
"@tauri-apps/api": "^2.8.0",
|
||||
"@tauri-apps/cli": "^2.8.4",
|
||||
"@types/bun": "^1.1.10",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^20",
|
||||
"@types/pdfkit": "^0.17.3",
|
||||
"@types/react": "^18",
|
||||
|
|
@ -109,5 +111,9 @@
|
|||
"typescript-eslint": "^8.46.2",
|
||||
"vite-tsconfig-paths": "^5.1.4",
|
||||
"vitest": "^4.0.1"
|
||||
}
|
||||
},
|
||||
"workspaces": [
|
||||
".",
|
||||
"apps/desktop"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue