21 lines
390 B
JSON
21 lines
390 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": {}
|
|
}
|
|
}
|