Skip to content

Commit b3411e8

Browse files
chore: upgrade dev dep. (#50)
1 parent da1f8a1 commit b3411e8

5 files changed

Lines changed: 19 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, windows-latest]
18-
version: ['22.17.0', '24.11.1']
18+
version: ['22.21.1', '24.11.1']
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: Checkout
@@ -38,6 +38,8 @@ jobs:
3838
run: npm run check:cycles
3939
- name: Test
4040
run: npm test
41+
- name: Check Types
42+
run: npm run check-types
4143
- name: Report Coverage
4244
uses: codecov/codecov-action@v5.5.1
4345
with:

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"packages/playwright"
88
],
99
"engines": {
10-
"node": ">= 22.17.0",
10+
"node": ">= 22.21.1",
1111
"npm": ">= 10.9.0"
1212
},
1313
"engineStrict": true,
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"@emnapi/core": "^1.2.0",
3333
"@emnapi/runtime": "^1.2.0",
34-
"@knighted/duel": "^4.0.0-rc.5",
34+
"@knighted/duel": "^4.0.0",
3535
"@napi-rs/wasm-runtime": "^1.0.7",
3636
"@playwright/test": "^1.48.2",
3737
"@rspack/cli": "^1.0.0",

packages/css/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@knighted/css",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "A build-time utility that traverses JavaScript/TypeScript module dependency graphs to extract, compile, and optimize all imported CSS into a single, in-memory string.",
55
"type": "module",
66
"main": "./dist/css.js",
@@ -79,6 +79,7 @@
7979
},
8080
"scripts": {
8181
"build": "duel && node ./scripts/copy-types-stub.js",
82+
"pretest": "npm run build",
8283
"check-types": "tsc --noEmit --project tsconfig.json && tsc --noEmit --project tsconfig.tests.json",
8384
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov --include \"src/**/*.ts\" tsx --test test/**/*.test.ts",
8485
"prepack": "npm run build"

packages/playwright/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"pretest": "npm run build"
1616
},
1717
"dependencies": {
18-
"@knighted/css": "1.0.7",
18+
"@knighted/css": "1.0.8",
1919
"@knighted/jsx": "^1.6.1",
2020
"lit": "^3.2.1",
2121
"react": "^19.0.0",

0 commit comments

Comments
 (0)