squiggle/turbo.json
Vyacheslav Matyukhin b7d56a3f1f
turbo tuning
2022-10-08 18:03:47 +04:00

23 lines
424 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"lint": {},
"format": {},
"build": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["build"]
},
"bundle": {
"dependsOn": ["^build", "build"]
},
"vscode-ext#build": {
"dependsOn": ["^build", "@quri/squiggle-components#bundle"]
},
"coverage": {
"dependsOn": ["build"]
}
}
}