Skip to content

Commit 3819e96

Browse files
committed
Update dev-dependencies
1 parent fcb2965 commit 3819e96

File tree

3 files changed

+51
-51
lines changed

3 files changed

+51
-51
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
name: ${{matrix.node}}
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
11-
- uses: actions/setup-node@v3
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
1212
with:
1313
node-version: ${{matrix.node}}
1414
- run: npm install
1515
- run: npm test
16-
- uses: codecov/codecov-action@v3
16+
- uses: codecov/codecov-action@v4
1717
strategy:
1818
matrix:
1919
node:

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
},
4444
"devDependencies": {
4545
"@types/node": "^20.0.0",
46-
"c8": "^8.0.0",
46+
"c8": "^10.0.0",
4747
"micromark": "^4.0.0",
4848
"prettier": "^3.0.0",
49-
"remark-cli": "^11.0.0",
50-
"remark-preset-wooorm": "^9.0.0",
49+
"remark-cli": "^12.0.0",
50+
"remark-preset-wooorm": "^10.0.0",
5151
"type-coverage": "^2.0.0",
5252
"typescript": "^5.0.0",
53-
"xo": "^0.56.0"
53+
"xo": "^0.58.0"
5454
},
5555
"scripts": {
5656
"prepack": "npm run build && npm run format",

readme.md

+44-44
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@
1212

1313
## Contents
1414

15-
* [What is this?](#what-is-this)
16-
* [When to use this](#when-to-use-this)
17-
* [Install](#install)
18-
* [Use](#use)
19-
* [API](#api)
20-
* [`mdxjs(options?)`](#mdxjsoptions)
21-
* [`Options`](#options)
22-
* [Authoring](#authoring)
23-
* [Syntax](#syntax)
24-
* [Errors](#errors)
25-
* [Types](#types)
26-
* [Compatibility](#compatibility)
27-
* [Security](#security)
28-
* [Related](#related)
29-
* [Contribute](#contribute)
30-
* [License](#license)
15+
* [What is this?](#what-is-this)
16+
* [When to use this](#when-to-use-this)
17+
* [Install](#install)
18+
* [Use](#use)
19+
* [API](#api)
20+
* [`mdxjs(options?)`](#mdxjsoptions)
21+
* [`Options`](#options)
22+
* [Authoring](#authoring)
23+
* [Syntax](#syntax)
24+
* [Errors](#errors)
25+
* [Types](#types)
26+
* [Compatibility](#compatibility)
27+
* [Security](#security)
28+
* [Related](#related)
29+
* [Contribute](#contribute)
30+
* [License](#license)
3131

3232
## What is this?
3333

@@ -50,14 +50,14 @@ include Rust or variables or whatnot, use
5050

5151
Alternatively, you can also use the underlying syntax extensions separately:
5252

53-
* [`micromark-extension-mdx-expression`][micromark-extension-mdx-expression]
54-
— support MDX expressions
55-
* [`micromark-extension-mdx-jsx`][micromark-extension-mdx-jsx]
56-
— support MDX JSX
57-
* [`micromark-extension-mdx-md`][micromark-extension-mdx-md]
58-
— turn some CommonMark features off
59-
* [`micromark-extension-mdxjs-esm`][micromark-extension-mdxjs-esm]
60-
— support MDX export/imports
53+
* [`micromark-extension-mdx-expression`][micromark-extension-mdx-expression]
54+
— support MDX expressions
55+
* [`micromark-extension-mdx-jsx`][micromark-extension-mdx-jsx]
56+
— support MDX JSX
57+
* [`micromark-extension-mdx-md`][micromark-extension-mdx-md]
58+
— turn some CommonMark features off
59+
* [`micromark-extension-mdxjs-esm`][micromark-extension-mdxjs-esm]
60+
— support MDX export/imports
6161

6262
When you need a syntax tree, combine this package with
6363
[`mdast-util-mdx`][mdast-util-mdx].
@@ -126,8 +126,8 @@ Create an extension for `micromark` to enable MDX syntax.
126126

127127
###### Parameters
128128

129-
* `options` ([`Options`][api-options], optional)
130-
— configuration; passed to all extensions
129+
* `options` ([`Options`][api-options], optional)
130+
— configuration; passed to all extensions
131131

132132
###### Returns
133133

@@ -150,28 +150,28 @@ See [`Options`][micromark-extension-mdx-expression-options].
150150

151151
For recommendations on how to author MDX, see each corresponding readme:
152152

153-
* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#authoring)
154-
* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#authoring)
155-
* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#authoring)
156-
* [CommonMark features not in MDX](https://github.com/micromark/micromark-extension-mdx-md#authoring)
153+
* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#authoring)
154+
* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#authoring)
155+
* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#authoring)
156+
* [CommonMark features not in MDX](https://github.com/micromark/micromark-extension-mdx-md#authoring)
157157

158158
## Syntax
159159

160160
For info on the syntax of these features, see each corresponding readme:
161161

162-
* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#syntax)
163-
* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#syntax)
164-
* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#syntax)
165-
* CommonMark features not in MDX: n/a
162+
* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#syntax)
163+
* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#syntax)
164+
* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#syntax)
165+
* CommonMark features not in MDX: n/a
166166

167167
## Errors
168168

169169
For info on what errors are thrown, see each corresponding readme:
170170

171-
* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#errors)
172-
* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#errors)
173-
* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#errors)
174-
* CommonMark features not in MDX: n/a
171+
* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#errors)
172+
* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#errors)
173+
* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#errors)
174+
* CommonMark features not in MDX: n/a
175175

176176
## Types
177177

@@ -196,12 +196,12 @@ This package is safe.
196196

197197
## Related
198198

199-
* [`micromark-extension-mdx`][micromark-extension-mdx]
200-
— support MDX unaware of JS
201-
* [`mdast-util-mdx`][mdast-util-mdx]
202-
— support MDX in mdast
203-
* [`remark-mdx`][remark-mdx]
204-
— support MDX syntax in remark
199+
* [`micromark-extension-mdx`][micromark-extension-mdx]
200+
— support MDX unaware of JS
201+
* [`mdast-util-mdx`][mdast-util-mdx]
202+
— support MDX in mdast
203+
* [`remark-mdx`][remark-mdx]
204+
— support MDX syntax in remark
205205

206206
## Contribute
207207

0 commit comments

Comments
 (0)