squiggle/turbo.json

31 lines
667 B
JSON
Raw Normal View History

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