modified turbo config for build pipeline of space and web projects

This commit is contained in:
Palanikannan1437 2023-10-04 01:37:49 +05:30
parent 18c9e64f48
commit 2fd9198fcf
2 changed files with 37 additions and 1 deletions

View File

@ -3,7 +3,8 @@
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"dev": "turbo run develop",
"develop": "next dev -p 4000",
"build": "next build",
"start": "next start -p 4000",
"lint": "next lint"

View File

@ -43,6 +43,41 @@
"web#develop": {
"cache": false,
"persistent": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"space#develop": {
"cache": false,
"persistent": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"web#build": {
"cache": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"space#build": {
"cache": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"@plane/lite-text-editor#build": {
"cache": true,
"dependsOn": [
"@plane/editor-core#build"
]
},
"@plane/rich-text-editor#build": {
"cache": true,
"dependsOn": [
"@plane/editor-core#build"
]