Skip to content

Commit 6ab323d

Browse files
committedAug 4, 2023
Change to require Node.js 16
1 parent 2bfe98f commit 6ab323d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ versions of Node.js.
271271
When we cut a new major release, we drop support for unmaintained versions of
272272
Node.
273273
This means we try to keep the current release line,
274-
`hast-util-find-and-replace@^4`, compatible with Node.js 12.
274+
`hast-util-find-and-replace@^5`, compatible with Node.js 16.
275275
276276
## Security
277277

‎tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"declaration": true,
66
"emitDeclarationOnly": true,
77
"exactOptionalPropertyTypes": true,
8-
"lib": ["es2020"],
8+
"lib": ["es2022"],
99
"module": "node16",
1010
"strict": true,
11-
"target": "es2020"
11+
"target": "es2022"
1212
},
1313
"exclude": ["coverage/", "node_modules/"],
1414
"include": ["**/*.js"]

0 commit comments

Comments
 (0)
Please sign in to comment.