mirror of
https://github.com/makeplane/plane.git
synced 2026-06-13 19:19:54 +00:00
0acb32e65e
* chore: bump turbo to 2.9.14, migrate pnpm config to workspace yaml - Bump turbo from 2.9.4 to 2.9.14 in root package.json and the four production Dockerfiles (web, live, admin, space). - Move pnpm.overrides, onlyBuiltDependencies, and ignoredBuiltDependencies from package.json into pnpm-workspace.yaml. pnpm v10+ no longer reads the pnpm field in package.json, so the full overrides block and most of onlyBuiltDependencies were being silently ignored. - Add @plane/utils as a workspace dependency to the live server. * chore: drop unused allowBuilds block, bump lodash-es to 4.18.1 - Remove the `allowBuilds` block from pnpm-workspace.yaml. It is not a recognized pnpm v10/v11 key and its values were inconsistent with the actual `onlyBuiltDependencies` / `ignoredBuiltDependencies` configuration. - Bump `lodash-es` catalog entry from 4.18.0 to 4.18.1. With overrides now applied workspace-wide, 4.18.0 (marked deprecated as a "bad release") was being enforced everywhere. * fix: use pnpm v11 allowBuilds in place of removed legacy keys `onlyBuiltDependencies` and `ignoredBuiltDependencies` were removed in pnpm v11. They were being silently ignored on this branch, which caused `ERR_PNPM_IGNORED_BUILDS` to fail CI under `--frozen-lockfile`. Replace them with the v11-native `allowBuilds:` block, mapping the previous allowlist to `true` and the previous denylist (sharp) to `false`. Locally verified that the build scripts for @parcel/watcher, @swc/core, esbuild, and msgpackr-extract now run on install.
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "plane",
|
|
"version": "1.3.1",
|
|
"private": true,
|
|
"description": "Open-source project management that unlocks customer value",
|
|
"license": "AGPL-3.0",
|
|
"repository": "https://github.com/makeplane/plane.git",
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev --concurrency=18",
|
|
"start": "turbo run start",
|
|
"clean": "turbo run clean && rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
|
|
"fix": "turbo run fix",
|
|
"fix:format": "turbo run fix:format",
|
|
"fix:lint": "turbo run fix:lint",
|
|
"check": "turbo run check",
|
|
"check:lint": "turbo run check:lint",
|
|
"check:format": "turbo run check:format",
|
|
"check:types": "turbo run check:types",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.2.7",
|
|
"oxfmt": "0.35.0",
|
|
"oxlint": "1.51.0",
|
|
"turbo": "2.9.14"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,json,css,md}": [
|
|
"pnpm exec oxfmt --no-error-on-unmatched-pattern"
|
|
],
|
|
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
|
|
"pnpm exec oxlint --fix --deny-warnings"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=22.18.0"
|
|
},
|
|
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
|
|
}
|