Files
2023-05-13 13:50:54 +02:00

20 lines
374 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"inputs": ["src/**"]
},
"test": {
"dependsOn": ["build"]
},
"deploy": {
"dependsOn": ["test"]
},
"js-tiktoken#test": {
"dependsOn": ["tiktoken#build", "js-tiktoken#build"]
}
}
}