Files
plane/turbo.json
T
222bbc62e1 [WIKI-584] refactor: mobile-editor (#3713)
* refactor: mobile-editor

* refactor: `packages/core` params

* refactor: editor wrappers

* chore: updated the readme

* chore: exposed attachment onClick method

* chore: updated props

* chore: renamed extended mark attribute function

* chore: added focus props to editor-wrapper

* fix: merge conflicts

* chore: removed old isTouchDevice references

* fix: types and tsconfig

* chore: pnpm migration

* fix: code review

* chore: updated attachment style class

* refactor: collaborative document extended props

* chore: props rearrangement

* fix: build errors and code splitting

* fix: additional rich text extension props

* fix: code formatting

* fix: editor formatting

* fix: code review

* chore: pass missing prop

* fix: build errors

---------

Co-authored-by: Aaryan Khandelwal <[email protected]>
2025-11-20 21:27:46 +05:30

85 lines
1.9 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"VITE_API_BASE_URL",
"VITE_ADMIN_BASE_URL",
"VITE_ADMIN_BASE_PATH",
"VITE_SPACE_BASE_URL",
"VITE_SPACE_BASE_PATH",
"VITE_WEB_BASE_URL",
"VITE_LIVE_BASE_URL",
"VITE_LIVE_BASE_PATH",
"VITE_ENABLE_SESSION_RECORDER",
"VITE_SESSION_RECORDER_KEY",
"VITE_POSTHOG_KEY",
"VITE_POSTHOG_HOST",
"VITE_POSTHOG_DEBUG",
"VITE_SUPPORT_EMAIL",
"ENABLE_EXPERIMENTAL_COREPACK",
"VITE_SENTRY_DSN",
"VITE_SENTRY_ENVIRONMENT",
"VITE_SENTRY_SEND_DEFAULT_PII",
"VITE_SENTRY_TRACES_SAMPLE_RATE",
"VITE_SENTRY_PROFILES_SAMPLE_RATE",
"VITE_SENTRY_REPLAYS_SESSION_SAMPLE_RATE",
"VITE_SENTRY_REPLAYS_ON_ERROR_SAMPLE_RATE",
"VITE_APP_VERSION"
],
"globalDependencies": ["pnpm-lock.yaml", "pnpm-workspace.yaml", ".npmrc"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"]
},
"vite:build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "out/**"]
},
"build-storybook": {
"dependsOn": ["^build"],
"outputs": ["storybook-static/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"check:types": {
"dependsOn": ["^build"],
"cache": false
},
"check:lint": {
"cache": false,
"inputs": ["**/*", "!**/build/**", "!**/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
}
}
}