2022-10-08 01:19:15 +00:00
|
|
|
{
|
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
|
|
"pipeline": {
|
|
|
|
"lint": {},
|
2022-10-08 13:28:43 +00:00
|
|
|
"format": {},
|
2022-10-08 01:19:15 +00:00
|
|
|
"build": {
|
|
|
|
"dependsOn": ["^build"]
|
|
|
|
},
|
2022-10-08 15:02:31 +00:00
|
|
|
"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/**"
|
|
|
|
]
|
|
|
|
},
|
2022-10-08 01:19:15 +00:00
|
|
|
"test": {
|
|
|
|
"dependsOn": ["build"]
|
|
|
|
},
|
2022-10-08 13:28:43 +00:00
|
|
|
"bundle": {
|
|
|
|
"dependsOn": ["^build", "build"]
|
|
|
|
},
|
2022-10-08 14:03:47 +00:00
|
|
|
"coverage": {
|
|
|
|
"dependsOn": ["build"]
|
|
|
|
}
|
2022-10-08 01:19:15 +00:00
|
|
|
}
|
|
|
|
}
|