mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
20 lines
436 B
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/**"]
|
|
}
|
|
}
|
|
}
|