Files
n8n-enterprise-unlocked/turbo.json
2025-07-28 10:07:28 +01:00

42 lines
907 B
JSON

{
"tasks": {
"clean": { "cache": false },
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"format": {},
"format:check": {},
"lint": {
"dependsOn": ["^build", "@n8n/eslint-config#build"]
},
"lint:fix": {},
"test": {
"dependsOn": ["^build", "build"],
"outputs": ["coverage/**", "*.xml"]
},
"watch": { "cache": false, "persistent": true },
"dev": { "cache": false, "persistent": true },
"build:playwright": {
"dependsOn": ["install-browsers:ci", "build"]
},
"install-browsers:ci": {
"cache": true,
"inputs": ["package.json"],
"outputs": ["ms-playwright-cache/**"],
"env": ["PLAYWRIGHT_BROWSERS_PATH"]
},
"install-browsers:local": {
"cache": false,
"inputs": ["package.json"]
},
"test:standard": {
"dependsOn": ["install-browsers:local"],
"cache": false
}
}
}