mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
This PR fixes the release workflow - We added a postbuild step so that any arguments/flags passed to the `pnpm run build` command are forwarded to the underlying command. - We made sure that we run any `pnpm` specific flags before the actual command - Cleaned up the CI workflow a bit
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "@tailwindcss/root",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"plugins": [
|
|
"prettier-plugin-organize-imports"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"tsconfig.json"
|
|
],
|
|
"options": {
|
|
"parser": "jsonc"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"integrations/**/*.ts"
|
|
],
|
|
"options": {
|
|
"plugins": [
|
|
"prettier-plugin-embed",
|
|
"prettier-plugin-organize-imports"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && turbo lint",
|
|
"build": "turbo build --filter=!./playgrounds/*",
|
|
"postbuild": "node ./scripts/pack-packages.mjs",
|
|
"dev": "turbo dev --filter=!./playgrounds/*",
|
|
"test": "cargo test && vitest run",
|
|
"test:integrations": "vitest --root=./integrations --no-file-parallelism",
|
|
"test:ui": "pnpm run --filter=tailwindcss test:ui",
|
|
"tdd": "vitest",
|
|
"bench": "vitest bench",
|
|
"version-packages": "node ./scripts/version-packages.mjs",
|
|
"vite": "pnpm run --filter=vite-playground dev",
|
|
"nextjs": "pnpm run --filter=nextjs-playground dev"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.46.0",
|
|
"@types/node": "catalog:",
|
|
"postcss": "8.4.41",
|
|
"postcss-import": "^16.1.0",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-embed": "^0.4.15",
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
|
"tsup": "^8.2.4",
|
|
"turbo": "^2.0.12",
|
|
"typescript": "^5.5.4",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"packageManager": "pnpm@9.6.0"
|
|
}
|