2022-02-08 11:05:56 +00:00
|
|
|
{
|
2022-08-11 06:08:32 +00:00
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
2022-02-08 11:05:56 +00:00
|
|
|
"baseBranch": "origin/main",
|
|
|
|
"pipeline": {
|
2022-08-11 06:08:32 +00:00
|
|
|
"@tldraw/www#start": {
|
|
|
|
"dependsOn": ["@tldraw/www#build"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
2022-08-11 06:08:32 +00:00
|
|
|
"dev": {
|
2022-02-08 11:05:56 +00:00
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"build": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"build:core": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
2022-08-11 06:08:32 +00:00
|
|
|
"@tldraw/www#build": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
2022-08-11 06:08:32 +00:00
|
|
|
"outputs": [".next/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
2022-08-11 06:08:32 +00:00
|
|
|
"tldraw-vscode#build": {
|
|
|
|
"dependsOn": ["@tldraw/vscode-editor#build"],
|
|
|
|
"outputs": ["dist/**", "editor/**"]
|
|
|
|
},
|
|
|
|
"tldraw-vscode#package": {
|
|
|
|
"dependsOn": ["tldraw-vscode#build"],
|
|
|
|
"outputs": ["temp/**"]
|
|
|
|
},
|
|
|
|
"tldraw-vscode#publish": {
|
|
|
|
"dependsOn": ["tldraw-vscode#package"],
|
|
|
|
"outputs": []
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"test:ci": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"outputs": ["coverage/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
2022-08-11 06:08:32 +00:00
|
|
|
"test:watch": {
|
|
|
|
"outputs": [],
|
|
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "src/**/*.json"],
|
|
|
|
"cache": false
|
|
|
|
},
|
2022-02-08 11:05:56 +00:00
|
|
|
"lint": {
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
|
|
|
}
|
|
|
|
}
|
2022-07-28 07:19:53 +00:00
|
|
|
}
|