Skip to content

Commit 23ecc9f

Browse files
committedJul 11, 2023
Change to require Node.js 16
1 parent 5d072f8 commit 23ecc9f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -330,11 +330,11 @@ versions of Node.js.
330330

331331
When we cut a new major release, we drop support for unmaintained versions of
332332
Node.
333-
This means we try to keep the current release line, `mdast-util-mdxjs-esm@^1`,
334-
compatible with Node.js 12.
333+
This means we try to keep the current release line, `mdast-util-mdxjs-esm@^2`,
334+
compatible with Node.js 16.
335335

336-
This utility works with `mdast-util-from-markdown` version 1+ and
337-
`mdast-util-to-markdown` version 1+.
336+
This utility works with `mdast-util-from-markdown` version 2+ and
337+
`mdast-util-to-markdown` version 2+.
338338

339339
## Related
340340

‎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", "index.d.ts"]

0 commit comments

Comments
 (0)
Please sign in to comment.