n8n/turbo.json
Alex Grozav ef87da4c19
feat: Add reusable frontend composables package (#13077)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <netroy@users.noreply.github.com>
2025-02-06 12:44:30 +02:00

106 lines
2.1 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"globalEnv": ["CI", "COVERAGE_ENABLED"],
"tasks": {
"clean": {
"cache": false
},
"build:backend": {
"dependsOn": ["n8n#build"]
},
"build:frontend": {
"dependsOn": ["n8n-editor-ui#build"]
},
"build:nodes": {
"dependsOn": ["n8n-nodes-base#build", "@n8n/n8n-nodes-langchain#build"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"format": {},
"format:check": {},
"lint:backend": {
"dependsOn": [
"@n8n/api-types#lint",
"@n8n/config#lint",
"@n8n/di#lint",
"@n8n/client-oauth2#lint",
"@n8n/imap#lint",
"@n8n/permissions#lint",
"@n8n/task-runner#lint",
"n8n-workflow#lint",
"n8n-core#lint",
"n8n-node-dev#lint",
"n8n#lint"
]
},
"lint:frontend": {
"dependsOn": [
"@n8n/chat#lint",
"@n8n/codemirror-lang#lint",
"@n8n/storybook#lint",
"n8n-cypress#lint",
"@n8n/composables#build",
"n8n-design-system#lint",
"n8n-editor-ui#lint"
]
},
"lint:nodes": {
"dependsOn": [
"n8n-nodes-base#lint",
"@n8n/n8n-nodes-langchain#lint",
"@n8n/json-schema-to-zod#lint"
]
},
"lint": {},
"lintfix": {},
"test:backend": {
"dependsOn": [
"@n8n/api-types#test",
"@n8n/config#test",
"@n8n/di#test",
"@n8n/client-oauth2#test",
"@n8n/imap#test",
"@n8n/permissions#test",
"@n8n/task-runner#test",
"n8n-workflow#test",
"n8n-core#test",
"n8n#test"
],
"outputs": ["coverage/**"]
},
"test:frontend": {
"dependsOn": [
"@n8n/chat#test",
"@n8n/codemirror-lang#test",
"@n8n/composables#build",
"n8n-design-system#test",
"n8n-editor-ui#test"
],
"outputs": ["coverage/**"]
},
"test:nodes": {
"dependsOn": [
"n8n-nodes-base#test",
"@n8n/n8n-nodes-langchain#test",
"@n8n/json-schema-to-zod#test"
],
"outputs": ["coverage/**"]
},
"test": {},
"watch": {
"cache": false,
"persistent": true
},
"dev": {
"cache": false,
"persistent": true
}
}
}