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: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
version: ['22.17.0', '24.11.1']
version: ['22.21.1', '24.11.1']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -38,6 +38,8 @@ jobs:
run: npm run check:cycles
- name: Test
run: npm test
- name: Check Types
run: npm run check-types
- name: Report Coverage
uses: codecov/codecov-action@v5.5.1
with:
Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"packages/playwright"
],
"engines": {
"node": ">= 22.17.0",
"node": ">= 22.21.1",
"npm": ">= 10.9.0"
},
"engineStrict": true,
Expand All @@ -31,7 +31,7 @@
"devDependencies": {
"@emnapi/core": "^1.2.0",
"@emnapi/runtime": "^1.2.0",
"@knighted/duel": "^4.0.0-rc.5",
"@knighted/duel": "^4.0.0",
"@napi-rs/wasm-runtime": "^1.0.7",
"@playwright/test": "^1.48.2",
"@rspack/cli": "^1.0.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knighted/css",
"version": "1.0.7",
"version": "1.0.8",
"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.",
"type": "module",
"main": "./dist/css.js",
Expand Down Expand Up @@ -79,6 +79,7 @@
},
"scripts": {
"build": "duel && node ./scripts/copy-types-stub.js",
"pretest": "npm run build",
"check-types": "tsc --noEmit --project tsconfig.json && tsc --noEmit --project tsconfig.tests.json",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov --include \"src/**/*.ts\" tsx --test test/**/*.test.ts",
"prepack": "npm run build"
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"pretest": "npm run build"
},
"dependencies": {
"@knighted/css": "1.0.7",
"@knighted/css": "1.0.8",
"@knighted/jsx": "^1.6.1",
"lit": "^3.2.1",
"react": "^19.0.0",
Expand Down