saleor-apps-redis_apl/turbo.json
Lukasz Ostrowski 569a187890
Remove VercelAPL from SaleorApp (#103)
* Remove VercelAPL from SaleorApp

* Fix name for workflow
2023-02-07 20:54:03 +01:00

33 lines
672 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"build#saleor-app-data-importer": {
"env": ["APL", "NEXT_PUBLIC_NUVO_LICENSE_KEY"]
},
"build#saleor-app-invoices": {
"env": [
"APL",
"APP_DEBUG",
"NODE_ENV",
"SECRET_KEY",
"TEMP_PDF_STORAGE_DIR",
"PORT",
"VERCEL_URL",
"ALLOWED_DOMAIN_PATTERN"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"test": {},
"test:ci": {}
}
}