gitbutler/package.json
Caleb Owens 721b9d13fa Add test:watch script to package.json files
Add a test:watch script to the package.json files in the root
and ui directories. This script runs vitest in watch mode for
the development environment, allowing developers to run tests
continuously while making changes to the codebase.
2024-03-18 19:20:18 +01:00

21 lines
712 B
JSON

{
"name": "git-butler-tauri",
"private": true,
"scripts": {
"dev": "pnpm --filter @gitbutler/ui run dev",
"test": "pnpm --filter @gitbutler/ui run test",
"test:watch": "pnpm --filter @gitbutler/ui run test:watch",
"build": "pnpm --filter @gitbutler/ui run build",
"build:nightly": "pnpm --filter @gitbutler/ui run build:nightly",
"build:development": "pnpm --filter @gitbutler/ui run build:development",
"check": "pnpm --filter @gitbutler/ui run check",
"lint": "pnpm --filter @gitbutler/ui run lint",
"format": "pnpm --filter @gitbutler/ui run format",
"tauri": "tauri",
"prepare": "pnpm --filter @gitbutler/ui run prepare"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.10"
}
}