saleor-apps-redis_apl/turbo.json
Lukasz Ostrowski 21f0a60f07
Add search app (#108)
* Add Search App to apps

* Link eslint config to invoices

* Changesets
2023-02-08 09:28:14 +01:00

44 lines
901 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"
]
},
"build#saleor-app-search": {
"env": [
"APL",
"APP_DEBUG",
"NODE_ENV",
"SECRET_KEY",
"ALLOWED_DOMAIN_PATTERN",
"REST_APL_ENDPOINT",
"REST_APL_TOKEN"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"test": {},
"test:ci": {}
}
}