1
0
mirror of https://github.com/svg/svgo.git synced 2025-04-19 10:22:15 +03:00

chore!: drop Node.js < 16 support (#2002)

This commit is contained in:
XhmikosR 2024-06-07 20:21:00 +03:00 committed by GitHub
parent 35d3fb6ee8
commit 964c7b28ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@
"!**/*.test.js"
],
"engines": {
"node": ">=14.0.0"
"node": ">=16.0.0"
},
"scripts": {
"build": "node scripts/sync-version.js && rollup -c",

View File

@ -2,8 +2,8 @@
"compilerOptions": {
"noEmit": true,
"module": "node16",
"target": "es2018",
"lib": ["es2018"],
"target": "es2020",
"lib": ["es2020"],
"allowJs": true,
"checkJs": true,
"strict": true,