Files
n8n-enterprise-unlocked/packages/frontend/editor-ui/turbo.json

20 lines
436 B
JSON

{
"extends": ["//"],
"tasks": {
"popularity-cache-marker": {
"cache": false,
"outputs": [".build/cache-marker"]
},
"fetch-popularity": {
"dependsOn": ["popularity-cache-marker"],
"cache": true,
"outputs": [".build/node-popularity.json"],
"inputs": ["scripts/fetch-node-popularity.mjs", ".build/cache-marker"]
},
"build": {
"dependsOn": ["^build", "fetch-popularity"],
"outputs": ["dist/**"]
}
}
}