Skip to content

Commit 2f74359

Browse files
committed
chore: do not include dev-deps in engines.node calculation
1 parent 737e133 commit 2f74359

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
run: pnpm lint:fix
2828

2929
- name: Check engine ranges, peer dependency ranges and installed versions
30-
run: pnpm installed-check --no-workspaces --fix
30+
run: pnpm test:engines --fix
3131

3232
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: pnpm knip
5151

5252
- name: Check engine ranges, peer dependency ranges and installed versions
53-
run: pnpm installed-check --no-workspaces
53+
run: pnpm test:engines
5454

5555
test:
5656
strategy:

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"lint:fix": "eslint . --fix",
5959
"test:examples": "pnpm --filter '!example-app-cucumber' --filter '!example-app-jest' -r test && pnpm --filter example-app-cucumber -r test",
6060
"test:knip": "knip",
61+
"test:engines": "pnpm installed-check --no-workspaces --engine-no-dev",
6162
"test:types": "vue-tsc --noEmit",
6263
"test:unit": "vitest test/unit --run",
6364
"build": "unbuild",
@@ -179,7 +180,7 @@
179180
"vue": "^3.5.17"
180181
},
181182
"engines": {
182-
"node": "^18.20.5 || ^20.9.0 || ^22.0.0 || >=24.0.0"
183+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
183184
},
184185
"packageManager": "pnpm@10.12.4",
185186
"pnpm": {

0 commit comments

Comments
 (0)