e43219ded8
* fix(import): make sure every shape is in page - only to add the shape is in page shapes -https://gist.github.com/cangoektas/4a84e2d48f6e2551b8b3a632ae1b4f71 Closes #554 * Update useShapeTree.tsx * Update useShapeTree.tsx * Update turbo.json Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
112 lines
No EOL
1.7 KiB
JSON
112 lines
No EOL
1.7 KiB
JSON
{
|
|
"npmClient": "yarn",
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"start:packages": {
|
|
"cache": false
|
|
},
|
|
"start:core": {
|
|
"cache": false
|
|
},
|
|
"start:apps": {
|
|
"cache": false
|
|
},
|
|
"start:www": {
|
|
"cache": false
|
|
},
|
|
"start:electron": {
|
|
"cache": false
|
|
},
|
|
"start:vscode": {
|
|
"cache": false
|
|
},
|
|
"typedoc": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"docs"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"build:packages": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"build:core": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"build:apps": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"build:www": {
|
|
"dependsOn": [
|
|
"build:packages",
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build:packages"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:ci": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"deploy": {
|
|
"dependsOn": [
|
|
"build",
|
|
"test"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
}
|
|
}
|
|
} |