mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
bf2c6e36ef
* fix: encrypt and decrypt function to check for None case. * fix: google and github oauth login check when one of them is not configured. * remove: NEXT_PUBLIC_ENABLE_OAUTH variable.
117 lines
2.6 KiB
JSON
117 lines
2.6 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_API_BASE_URL",
|
|
"NEXT_PUBLIC_DEPLOY_URL",
|
|
"NEXT_PUBLIC_SENTRY_DSN",
|
|
"NEXT_PUBLIC_SENTRY_ENVIRONMENT",
|
|
"NEXT_PUBLIC_ENABLE_SENTRY",
|
|
"NEXT_PUBLIC_TRACK_EVENTS",
|
|
"NEXT_PUBLIC_PLAUSIBLE_DOMAIN",
|
|
"NEXT_PUBLIC_CRISP_ID",
|
|
"NEXT_PUBLIC_ENABLE_SESSION_RECORDER",
|
|
"NEXT_PUBLIC_SESSION_RECORDER_KEY",
|
|
"NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS",
|
|
"NEXT_PUBLIC_DEPLOY_WITH_NGINX",
|
|
"NEXT_PUBLIC_POSTHOG_KEY",
|
|
"NEXT_PUBLIC_POSTHOG_HOST",
|
|
"JITSU_TRACKER_ACCESS_KEY",
|
|
"JITSU_TRACKER_HOST"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next/**",
|
|
"dist/**"
|
|
]
|
|
},
|
|
"web#develop": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": [
|
|
"@plane/lite-text-editor#build",
|
|
"@plane/rich-text-editor#build",
|
|
"@plane/document-editor#build",
|
|
"@plane/ui#build"
|
|
]
|
|
},
|
|
"space#develop": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": [
|
|
"@plane/lite-text-editor#build",
|
|
"@plane/rich-text-editor#build",
|
|
"@plane/document-editor#build",
|
|
"@plane/ui#build"
|
|
]
|
|
},
|
|
"web#build": {
|
|
"cache": true,
|
|
"dependsOn": [
|
|
"@plane/lite-text-editor#build",
|
|
"@plane/rich-text-editor#build",
|
|
"@plane/document-editor#build",
|
|
"@plane/ui#build"
|
|
]
|
|
},
|
|
"space#build": {
|
|
"cache": true,
|
|
"dependsOn": [
|
|
"@plane/lite-text-editor#build",
|
|
"@plane/rich-text-editor#build",
|
|
"@plane/document-editor#build",
|
|
"@plane/ui#build"
|
|
]
|
|
},
|
|
"@plane/lite-text-editor#build": {
|
|
"cache": true,
|
|
"dependsOn": [
|
|
"@plane/editor-core#build",
|
|
"@plane/editor-extensions#build",
|
|
"@plane/editor-types#build"
|
|
]
|
|
},
|
|
"@plane/rich-text-editor#build": {
|
|
"cache": true,
|
|
"dependsOn": [
|
|
"@plane/editor-core#build",
|
|
"@plane/editor-extensions#build",
|
|
"@plane/editor-types#build"
|
|
]
|
|
},
|
|
"@plane/document-editor#build": {
|
|
"cache": true,
|
|
"dependsOn": [
|
|
"@plane/editor-core#build",
|
|
"@plane/editor-extensions#build",
|
|
"@plane/editor-types#build"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"develop": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|