mirror of
https://github.com/makeplane/plane.git
synced 2026-07-10 12:37:13 +02:00
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).
23 lines
494 B
JSON
23 lines
494 B
JSON
{
|
|
"name": "@plane/tailwind-config",
|
|
"version": "1.3.1",
|
|
"private": true,
|
|
"description": "common tailwind configuration across monorepo",
|
|
"license": "AGPL-3.0",
|
|
"sideEffects": [
|
|
"**/*.css"
|
|
],
|
|
"main": "tailwind.config.js",
|
|
"exports": {
|
|
"./index.css": "./index.css",
|
|
"./postcss.config.js": "./postcss.config.js"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/postcss": "catalog:",
|
|
"postcss": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"tailwindcss": "catalog:"
|
|
}
|
|
}
|