Files
cunningham/turbo.json
Nathan Vasse 2457a93ebf (tokens) add the support for Typescript config file
Add the support to load cunningham.ts local config file based on ts-node.
Those files will be loaded as CommonJS to preserve to coherence regarding
the way the cunningham bin is ran by node.
2023-01-11 11:01:56 +01:00

43 lines
673 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false,
"dependsOn": [
"^dev"
]
},
"test": {
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"deploy": {
"dependsOn": [
"build",
"test",
"lint"
],
"outputs": []
},
"@openfun/cunningham-tokens#test": {
"dependsOn": ["build"]
}
}
}