mirror of
https://github.com/makeplane/plane.git
synced 2025-12-14 19:07:50 +01:00
99 lines
2.4 KiB
JSON
99 lines
2.4 KiB
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"globalDependencies": [".npmrc", ".prettierrc", "eslint.config.mjs"],
|
|
"globalEnv": [
|
|
"APP_VERSION",
|
|
"DEV",
|
|
"LOG_LEVEL",
|
|
"NODE_ENV",
|
|
"SENTRY_DSN",
|
|
"SENTRY_ENVIRONMENT",
|
|
"SENTRY_TRACES_SAMPLE_RATE",
|
|
"VITE_ADMIN_BASE_PATH",
|
|
"VITE_ADMIN_BASE_URL",
|
|
"VITE_API_BASE_PATH",
|
|
"VITE_API_BASE_URL",
|
|
"VITE_APP_VERSION",
|
|
"VITE_ENABLE_SESSION_RECORDER",
|
|
"VITE_LIVE_BASE_PATH",
|
|
"VITE_LIVE_BASE_URL",
|
|
"VITE_POSTHOG_DEBUG",
|
|
"VITE_POSTHOG_HOST",
|
|
"VITE_POSTHOG_KEY",
|
|
"VITE_SENTRY_DSN",
|
|
"VITE_SENTRY_ENVIRONMENT",
|
|
"VITE_SENTRY_PROFILES_SAMPLE_RATE",
|
|
"VITE_SENTRY_REPLAYS_ON_ERROR_SAMPLE_RATE",
|
|
"VITE_SENTRY_REPLAYS_SESSION_SAMPLE_RATE",
|
|
"VITE_SENTRY_SEND_DEFAULT_PII",
|
|
"VITE_SENTRY_TRACES_SAMPLE_RATE",
|
|
"VITE_SESSION_RECORDER_KEY",
|
|
"VITE_SPACE_BASE_PATH",
|
|
"VITE_SPACE_BASE_URL",
|
|
"VITE_SUPPORT_EMAIL",
|
|
"VITE_WEB_BASE_PATH",
|
|
"VITE_WEB_BASE_URL",
|
|
"VITE_WEBSITE_URL"
|
|
],
|
|
"remoteCache": {
|
|
"enabled": false
|
|
},
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": ["dist/**", "build/**", ".react-router/**"]
|
|
},
|
|
"build-storybook": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["storybook-static/**"]
|
|
},
|
|
"check": {
|
|
"dependsOn": ["check:format", "check:lint", "check:types"]
|
|
},
|
|
"check:format": {
|
|
"inputs": ["$TURBO_DEFAULT$"],
|
|
"outputs": ["node_modules/.cache/prettier/**"]
|
|
},
|
|
"check:lint": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", "!**/*.md"],
|
|
"outputs": ["node_modules/.cache/eslint/**"]
|
|
},
|
|
"check:types": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", "!**/*.md"],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"dependsOn": ["^build"],
|
|
"persistent": true
|
|
},
|
|
"fix": {
|
|
"cache": false,
|
|
"dependsOn": ["fix:format", "fix:lint"]
|
|
},
|
|
"fix:format": {
|
|
"inputs": ["$TURBO_DEFAULT$"],
|
|
"outputs": ["node_modules/.cache/prettier/**"]
|
|
},
|
|
"fix:lint": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", "!**/*.md"],
|
|
"outputs": ["node_modules/.cache/eslint/**"]
|
|
},
|
|
"start": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|