Skip to content

Commit 0e92310

Browse files
authored
Bump dependencies (tailwindlabs#13738)
* run `pnpm update --recursive` * update tests to reflect lightningcss bump It looks like it's mainly (re-)ordering properties. Not 100% sure why though.
1 parent 3116d65 commit 0e92310

File tree

12 files changed

+3768
-3201
lines changed

12 files changed

+3768
-3201
lines changed

crates/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"license": "MIT",
2828
"devDependencies": {
29-
"@napi-rs/cli": "^2.17.0"
29+
"@napi-rs/cli": "^2.18.3"
3030
},
3131
"engines": {
3232
"node": ">= 10"

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
},
3636
"license": "MIT",
3737
"devDependencies": {
38-
"@playwright/test": "^1.41.2",
39-
"@types/node": "^20.11.19",
40-
"@vitest/coverage-v8": "^1.2.1",
38+
"@playwright/test": "^1.44.1",
39+
"@types/node": "^20.12.12",
40+
"@vitest/coverage-v8": "^1.6.0",
4141
"postcss": "8.4.24",
42-
"postcss-import": "^16.0.0",
42+
"postcss-import": "^16.1.0",
4343
"prettier": "^3.2.5",
4444
"prettier-plugin-organize-imports": "^3.2.4",
45-
"tsup": "^8.0.1",
46-
"turbo": "^1.12.4",
47-
"typescript": "^5.3.3",
48-
"vitest": "^1.1.3"
45+
"tsup": "^8.0.2",
46+
"turbo": "^1.13.3",
47+
"typescript": "^5.4.5",
48+
"vitest": "^1.6.0"
4949
}
5050
}

packages/@tailwindcss-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
"dependencies": {
3232
"@parcel/watcher": "^2.4.1",
3333
"@tailwindcss/oxide": "workspace:^",
34-
"lightningcss": "^1.24.0",
34+
"lightningcss": "^1.25.0",
3535
"mri": "^1.2.0",
36-
"picocolors": "^1.0.0",
36+
"picocolors": "^1.0.1",
3737
"postcss": "8.4.24",
38-
"postcss-import": "^16.0.0",
38+
"postcss-import": "^16.1.0",
3939
"tailwindcss": "workspace:^"
4040
},
4141
"devDependencies": {

packages/@tailwindcss-postcss/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
},
3232
"dependencies": {
3333
"@tailwindcss/oxide": "workspace:^",
34-
"lightningcss": "^1.24.0",
35-
"postcss-import": "^16.0.0",
34+
"lightningcss": "^1.25.0",
35+
"postcss-import": "^16.1.0",
3636
"tailwindcss": "workspace:^"
3737
},
3838
"devDependencies": {
39-
"@types/node": "^20.11.17",
39+
"@types/node": "^20.12.12",
4040
"@types/postcss-import": "^14.0.3",
4141
"postcss": "8.4.24"
4242
}

packages/@tailwindcss-vite/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
},
3030
"dependencies": {
3131
"@tailwindcss/oxide": "workspace:^",
32-
"lightningcss": "^1.24.0",
32+
"lightningcss": "^1.25.0",
3333
"tailwindcss": "workspace:^"
3434
},
3535
"devDependencies": {
36-
"@types/node": "^20.11.17",
37-
"vite": "^5.2.0"
36+
"@types/node": "^20.12.12",
37+
"vite": "^5.2.11"
3838
},
3939
"peerDependencies": {
4040
"vite": "^5.2.0"

packages/tailwindcss/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
],
6565
"devDependencies": {
6666
"@tailwindcss/oxide": "workspace:^",
67-
"@types/node": "^20.10.8",
68-
"lightningcss": "^1.24.0"
67+
"@types/node": "^20.12.12",
68+
"lightningcss": "^1.25.0"
6969
}
7070
}

packages/tailwindcss/src/__snapshots__/index.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,9 @@ exports[`compiling CSS > \`@tailwind utilities\` is replaced by utilities using
412412
}
413413
414414
.shadow {
415+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
415416
--tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
416417
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
417-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
418418
}
419419
420420
@media (width >= 40rem) {

packages/tailwindcss/src/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ describe('@apply', () => {
184184
}
185185
186186
.foo {
187-
--tw-translate-x: 100%;
188187
translate: var(--tw-translate-x) var(--tw-translate-y);
189188
animation: var(--animate-spin, spin 1s linear infinite);
190189
background-color: var(--color-red-500, #ef4444);
190+
--tw-translate-x: 100%;
191191
text-decoration-line: underline;
192192
}
193193
@@ -262,9 +262,9 @@ describe('@apply', () => {
262262
`),
263263
).toMatchInlineSnapshot(`
264264
".foo, .bar {
265-
--tw-content: "b";
266265
content: var(--tw-content);
267266
content: var(--tw-content);
267+
--tw-content: "b";
268268
}
269269
270270
@supports (-moz-orient: inline) {

0 commit comments

Comments
 (0)