2022-10-08 01:19:15 +00:00
|
|
|
{
|
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
|
|
"pipeline": {
|
2022-10-08 17:34:31 +00:00
|
|
|
"lint": {
|
|
|
|
"outputs": []
|
|
|
|
},
|
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"]
|
|
|
|
},
|
2022-10-08 17:15:37 +00:00
|
|
|
"@quri/squiggle-components#build": {
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**", "storybook-static/**"]
|
|
|
|
},
|
2022-10-08 15:02:31 +00:00
|
|
|
"@quri/squiggle-lang#build": {
|
2022-10-08 17:15:37 +00:00
|
|
|
"dependsOn": ["^build"],
|
2022-10-08 15:02:31 +00:00
|
|
|
"outputs": [
|
|
|
|
"__tests__/**/*.bs.js",
|
|
|
|
"benchmark/**/*.bs.js",
|
|
|
|
"src/rescript/**/*.js",
|
|
|
|
"src/rescript/**/*.gen.tsx",
|
|
|
|
"dist/**"
|
|
|
|
]
|
|
|
|
},
|
2022-10-08 01:19:15 +00:00
|
|
|
"test": {
|
2022-10-08 17:34:31 +00:00
|
|
|
"dependsOn": ["build"],
|
|
|
|
"outputs": []
|
2022-10-08 01:19:15 +00:00
|
|
|
},
|
2022-10-08 13:28:43 +00:00
|
|
|
"bundle": {
|
2022-10-12 15:03:48 +00:00
|
|
|
"dependsOn": ["build"]
|
2022-10-08 13:28:43 +00:00
|
|
|
},
|
2022-10-08 17:15:37 +00:00
|
|
|
"coverage": {
|
2022-10-12 15:03:48 +00:00
|
|
|
"dependsOn": ["build"]
|
2022-10-08 17:15:37 +00:00
|
|
|
}
|
2022-10-08 01:19:15 +00:00
|
|
|
}
|
|
|
|
}
|