mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 08:55:32 +02:00
67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
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": ["src/**/*"],
|
|
"outputs": []
|
|
},
|
|
"spell": {
|
|
"cache": true,
|
|
"inputs": ["src/**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml,yml}"],
|
|
"outputs": []
|
|
},
|
|
"test:e2e": {
|
|
"cache": true,
|
|
"inputs": ["src/**/*"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
},
|
|
"test:e2e:shard1": {
|
|
"cache": true,
|
|
"inputs": ["src/**/*"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
},
|
|
"test:e2e:shard2": {
|
|
"cache": true,
|
|
"inputs": ["src/**/*"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
},
|
|
"test:e2e:shard3": {
|
|
"cache": true,
|
|
"inputs": ["src/**/*"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
},
|
|
"test:e2e:shard4": {
|
|
"cache": true,
|
|
"inputs": ["src/**/*"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
},
|
|
"test:e2e:all": {
|
|
"cache": true,
|
|
"dependsOn": ["test:e2e:shard1", "test:e2e:shard2", "test:e2e:shard3", "test:e2e:shard4"],
|
|
"inputs": ["src/**/*"],
|
|
"outputs": ["playwright-report/**", "test-results/**"]
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|