1
0
mirror of https://github.com/tabler/tabler-icons.git synced 2025-01-16 20:28:28 +01:00
tabler-icons/turbo.json
Paweł Kuna ceed535efb
Import fixes (#1039)
* fix packages imports

* imports check scripts

* update packages

* svelte build improvements

* build fix
2024-03-12 12:19:23 +01:00

28 lines
509 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"],
"inputs": ["../../icons/**"]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
},
"test": {
"dependsOn": ["build", "^build"]
},
"typecheck": {
"dependsOn": ["build", "^build"]
},
"imports-check": {
"dependsOn": ["build", "^build"]
}
}
}