mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
3f57fefdb4
Centralize every external dependency version in the pnpm catalog (pnpm-workspace.yaml) and reference them via `catalog:` across all apps and packages. Packages that previously used differing versions were unified to the highest (notably @react-pdf/renderer ^3.4.5 -> ^4.3.0 in apps/web).
18 lines
996 B
JSON
18 lines
996 B
JSON
{
|
|
"name": "@plane/codemods",
|
|
"version": "1.3.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"function-declaration": "jscodeshift -t ./function-declaration.ts --extensions=tsx --parser=tsx ../../apps/*/app ../../apps/*/ce ../../apps/*/core ../../apps/*/ee ../../apps/*/helpers ../../packages/*/src --ignore-pattern='**/node_modules/**' --ignore-pattern='**/dist/**' --ignore-pattern='**/build/**' --ignore-pattern='**/*.d.ts'",
|
|
"remove-directives": "jscodeshift -t ./remove-directives.ts --extensions=ts,tsx --parser=tsx ../../apps/*/app ../../apps/*/ce ../../apps/*/core ../../apps/*/ee ../../apps/*/helpers ../../apps/*/src ../../packages/*/src --ignore-pattern='**/node_modules/**' --ignore-pattern='**/dist/**' --ignore-pattern='**/build/**' --ignore-pattern='**/*.d.ts'"
|
|
},
|
|
"devDependencies": {
|
|
"@hypermod/utils": "catalog:",
|
|
"@types/jscodeshift": "catalog:",
|
|
"ast-types": "catalog:",
|
|
"jscodeshift": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|