Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.60.0",
"@playwright/test": "^1.61.1",
"@types/node": "catalog:",
"postcss": "catalog:",
"postcss-import": "^16.1.1",
Expand All @@ -58,7 +58,7 @@
"tsup": "^8.5.1",
"turbo": "^2.9.18",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
"vitest": "^4.1.9"
},
"packageManager": "pnpm@11.9.0"
}
3 changes: 1 addition & 2 deletions packages/@tailwindcss-standalone/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ declare module '*.css' {
declare var __tw_version: string | undefined
declare var __tw_resolve: undefined | ((id: string, base?: string) => string | false)
declare var __tw_readFile:
| undefined
| ((path: string, encoding: BufferEncoding) => Promise<string | undefined>)
undefined | ((path: string, encoding: BufferEncoding) => Promise<string | undefined>)
declare var __tw_load: undefined | ((path: string) => Promise<object | undefined>)
2 changes: 1 addition & 1 deletion packages/tailwindcss/src/constant-fold-declaration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export function constantFoldDeclarationAst(
if (
operator === '+' &&
!(
(constant[1] === known[1]) // Only same unit is allowed
constant[1] === known[1] // Only same unit is allowed
)
) {
return
Expand Down
Loading
Loading