We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f212c commit 63c03acCopy full SHA for 63c03ac
.github/workflows/unit-test.yml
@@ -31,7 +31,7 @@ jobs:
31
strategy:
32
matrix:
33
os: [ubuntu-latest, windows-latest]
34
- node: [18, 20]
+ node: [18, 20, 22]
35
fail-fast: false
36
37
steps:
package.json
@@ -98,7 +98,7 @@
98
"vue": "^3.5.13"
99
},
100
"engines": {
101
- "node": ">=16.14.0"
+ "node": ">=18.12.0"
102
103
"prettier": "@sxzz/prettier-config"
104
}
tsup.config.ts
@@ -3,7 +3,7 @@ import { defineConfig } from 'tsup'
3
export default defineConfig({
4
entry: ['./src/*.ts'],
5
format: ['cjs', 'esm'],
6
- target: 'node16.14',
+ target: 'node18.12',
7
splitting: true,
8
cjsInterop: true,
9
clean: true,
0 commit comments