mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 00:45:31 +02:00
42 lines
906 B
JSON
42 lines
906 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"cache": true,
|
|
"inputs": ["**/*{ts,tsx,js,jsx,astro}"],
|
|
"outputs": []
|
|
},
|
|
"format": {
|
|
"cache": true,
|
|
"inputs": ["**/*.{ts,tsx,js,jsx,astro,json,yml,yaml}"],
|
|
"outputs": []
|
|
},
|
|
"build": {
|
|
"cache": true,
|
|
"inputs": ["src"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"test": {
|
|
"cache": true,
|
|
"inputs": ["**/*.{ts,tsx,js,jsx}"],
|
|
"outputs": []
|
|
},
|
|
"spell": {
|
|
"cache": true,
|
|
"inputs": ["**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"],
|
|
"outputs": []
|
|
},
|
|
"test:playwright": {
|
|
"cache": true,
|
|
"dependsOn": ["build"],
|
|
"inputs": ["src"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|