Skip to content

Commit 05c3a87

Browse files
authored
Bump dependencies (#20381)
This PR bumps dependencies and dev dependencies and applies required changes due to version bumps. - Moved `@parcel/watcher` related dependencies to the `pnpm-workflow.yaml` catalog - Bumped Lightning CSS + updated tests with improvements - Bumped napi related dependencies - Tackled a Vitest warning ## Test plan All tests should still pass on all platforms [ci-all]
1 parent 50daebd commit 05c3a87

28 files changed

Lines changed: 874 additions & 1033 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
- name: Linux
2828
os: namespace-profile-default
2929

30+
# Playwright 1.62+ dropped WebKit support for macOS 14, and hangs
31+
# instead of failing when launching WebKit on a macos-14 runner.
3032
- name: macOS
31-
os: macos-14
33+
os: macos-15
3234

3335
# Exclude windows and macos from being built on feature branches
3436
run-all:

Cargo.lock

Lines changed: 16 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/node/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,5 +202,6 @@ index.js
202202
browser.js
203203
tailwindcss-oxide.wasi-browser.js
204204
tailwindcss-oxide.wasi.cjs
205+
tailwindcss-oxide.wasi.d.cts
205206
wasi-worker-browser.mjs
206207
wasi-worker.mjs

crates/node/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ crate-type = ["cdylib"]
88

99
[dependencies]
1010
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
11-
napi = { version = "3.8.5", default-features = false, features = ["napi4"] }
12-
napi-derive = "3.5.4"
11+
napi = { version = "3.11.0", default-features = false, features = ["napi4"] }
12+
napi-derive = "3.6.0"
1313
tailwindcss-oxide = { path = "../oxide" }
14-
rayon = "1.10.0"
14+
rayon = "1.12.0"
1515

1616
[build-dependencies]
17-
napi-build = "2.3.1"
17+
napi-build = "2.3.2"

crates/node/npm/wasm32-wasi/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"license": "MIT",
1616
"engines": {
17-
"node": ">=14.0.0"
17+
"node": "^20.19.0 || ^22.13.0 || >=23.5.0"
1818
},
1919
"publishConfig": {
2020
"provenance": true,
@@ -27,11 +27,11 @@
2727
},
2828
"browser": "tailwindcss-oxide.wasi-browser.js",
2929
"dependencies": {
30-
"@napi-rs/wasm-runtime": "^1.1.4",
31-
"@emnapi/core": "^1.11.1",
32-
"@emnapi/runtime": "^1.11.1",
33-
"@tybys/wasm-util": "^0.10.2",
34-
"@emnapi/wasi-threads": "^1.2.2",
30+
"@napi-rs/wasm-runtime": "^1.2.2",
31+
"@emnapi/core": "^1.11.3",
32+
"@emnapi/runtime": "^1.11.3",
33+
"@tybys/wasm-util": "^0.10.3",
34+
"@emnapi/wasi-threads": "^1.2.3",
3535
"tslib": "^2.8.1"
3636
},
3737
"bundledDependencies": [

crates/node/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@
3333
},
3434
"license": "MIT",
3535
"devDependencies": {
36-
"@napi-rs/cli": "3.7.0",
37-
"@napi-rs/wasm-runtime": "^1.1.5",
38-
"emnapi": "1.11.1"
36+
"@emnapi/core": "1.11.3",
37+
"@emnapi/runtime": "1.11.3",
38+
"@napi-rs/cli": "3.7.4",
39+
"@napi-rs/wasm-runtime": "^1.2.2",
40+
"emnapi": "1.11.3"
3941
},
4042
"engines": {
4143
"node": ">= 20"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@
4848
},
4949
"license": "MIT",
5050
"devDependencies": {
51-
"@playwright/test": "^1.61.1",
51+
"@playwright/test": "^1.62.1",
5252
"@types/node": "catalog:",
5353
"postcss": "catalog:",
5454
"postcss-import": "^16.1.1",
5555
"prettier": "catalog:",
5656
"prettier-plugin-embed": "^0.5.1",
5757
"prettier-plugin-organize-imports": "^4.3.0",
5858
"tsup": "^8.5.1",
59-
"turbo": "^2.9.18",
59+
"turbo": "^2.10.8",
6060
"typescript": "^5.9.3",
61-
"vitest": "^4.1.9"
61+
"vitest": "^4.1.10"
6262
},
6363
"packageManager": "pnpm@11.9.0"
6464
}

packages/@tailwindcss-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"devDependencies": {
3333
"h3": "^1.15.11",
34-
"listhen": "^1.10.0",
34+
"listhen": "^1.10.1",
3535
"tailwindcss": "workspace:*"
3636
}
3737
}
File renamed without changes.

0 commit comments

Comments
 (0)