mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 13:26:16 +03:00
721b9d13fa
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.
21 lines
712 B
JSON
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"
|
|
}
|
|
}
|