31 lines
667 B
JSON
31 lines
667 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"lint": {},
|
|
"format": {},
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"vscode-squiggle#build": {
|
|
"dependsOn": ["^build", "@quri/squiggle-components#bundle"]
|
|
},
|
|
"@quri/squiggle-lang#build": {
|
|
"outputs": [
|
|
"__tests__/**/*.bs.js",
|
|
"benchmark/**/*.bs.js",
|
|
"src/rescript/**/*.js",
|
|
"src/rescript/**/*.gen.tsx",
|
|
"../../node_modules/bisect_ppx/**/*.bs.js",
|
|
"dist/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"bundle": {
|
|
"dependsOn": ["^build", "build"]
|
|
},
|
|
"coverage": {}
|
|
}
|
|
}
|