mirror of
https://github.com/makeplane/plane.git
synced 2025-12-28 16:06:33 +01:00
* chore(repo): migrate to pnpm * chore(repo): cleanup pnpm integration with turbo * chore(repo): run lint * chore(repo): cleanup tsconfigs * chore: align TypeScript to 5.8.3 across monorepo; update pnpm override and catalog; pnpm install to update lockfile * chore(repo): revert logger.ts changes * fix: type errors * fix: build errors * fix: pnpm home setup in dockerfiles --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_API_BASE_URL",
|
|
"NEXT_PUBLIC_ADMIN_BASE_URL",
|
|
"NEXT_PUBLIC_ADMIN_BASE_PATH",
|
|
"NEXT_PUBLIC_SPACE_BASE_URL",
|
|
"NEXT_PUBLIC_SPACE_BASE_PATH",
|
|
"NEXT_PUBLIC_WEB_BASE_URL",
|
|
"NEXT_PUBLIC_LIVE_BASE_URL",
|
|
"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_POSTHOG_KEY",
|
|
"NEXT_PUBLIC_POSTHOG_HOST",
|
|
"NEXT_PUBLIC_POSTHOG_DEBUG",
|
|
"NEXT_PUBLIC_SUPPORT_EMAIL"
|
|
],
|
|
"globalDependencies": ["pnpm-lock.yaml", "pnpm-workspace.yaml", ".npmrc"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "dist/**"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"check:types": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false
|
|
},
|
|
"check:lint": {
|
|
"cache": false,
|
|
"inputs": ["**/*", "!**/.next/**", "!**/dist/**"]
|
|
},
|
|
"check:format": {
|
|
"cache": false
|
|
},
|
|
"check": {
|
|
"dependsOn": ["check:format", "check:lint", "check:types"],
|
|
"cache": false
|
|
},
|
|
"fix:lint": {
|
|
"cache": false
|
|
},
|
|
"fix:format": {
|
|
"cache": false
|
|
},
|
|
"fix": {
|
|
"dependsOn": ["fix:format", "fix:lint"],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|