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 107148e commit 7ba9d57Copy full SHA for 7ba9d57
.github/workflows/unit-test.yml
@@ -35,7 +35,7 @@ jobs:
35
strategy:
36
matrix:
37
os: [ubuntu-latest, windows-latest]
38
- node: [18, 20]
+ node: [16, 18, 20]
39
fail-fast: false
40
41
steps:
package.json
@@ -107,7 +107,7 @@
107
"webpack": "^5.90.3"
108
},
109
"engines": {
110
- "node": ">=18.0.0"
+ "node": ">=16.14.0"
111
112
"prettier": "@sxzz/prettier-config"
113
}
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: 'node18',
+ target: 'node16.14',
7
splitting: true,
8
cjsInterop: true,
9
clean: true,
0 commit comments