Skip to content

Commit 9121f99

Browse files
committed
Update dev-dependencies
1 parent bc59f3b commit 9121f99

File tree

4 files changed

+59
-56
lines changed

4 files changed

+59
-56
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:

index.test-d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ visit(implicitTree, function (node, index, parent) {
5959
visit(sampleTree, 'heading', function (node, index, parent) {
6060
expectType<Heading>(node)
6161
expectType<number | undefined>(index)
62-
expectType<
63-
Blockquote | FootnoteDefinition | ListItem | Root | undefined
64-
>(parent)
62+
expectType<Blockquote | FootnoteDefinition | ListItem | Root | undefined>(
63+
parent
64+
)
6565
})
6666

6767
// Not in tree.

package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,22 @@
5454
"devDependencies": {
5555
"@types/mdast": "^4.0.0",
5656
"@types/node": "^20.0.0",
57-
"c8": "^8.0.0",
58-
"mdast-util-from-markdown": "^1.0.0",
59-
"mdast-util-gfm": "^2.0.0",
60-
"micromark-extension-gfm": "^2.0.0",
61-
"prettier": "^2.0.0",
62-
"remark-cli": "^11.0.0",
63-
"remark-preset-wooorm": "^9.0.0",
64-
"tsd": "^0.28.0",
57+
"c8": "^9.0.0",
58+
"mdast-util-from-markdown": "^2.0.0",
59+
"mdast-util-gfm": "^3.0.0",
60+
"micromark-extension-gfm": "^3.0.0",
61+
"prettier": "^3.0.0",
62+
"remark-cli": "^12.0.0",
63+
"remark-preset-wooorm": "^10.0.0",
64+
"tsd": "^0.31.0",
6565
"type-coverage": "^2.0.0",
6666
"typescript": "^5.0.0",
67-
"xo": "^0.54.0"
67+
"xo": "^0.58.0"
6868
},
6969
"scripts": {
7070
"prepack": "npm run build && npm run format",
7171
"build": "tsc --build --clean && tsc --build && tsd && type-coverage",
72-
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
72+
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
7373
"test-api": "node --conditions development test.js",
7474
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
7575
"test": "npm run build && npm run format && npm run test-coverage"
@@ -108,6 +108,9 @@
108108
}
109109
}
110110
],
111-
"prettier": true
111+
"prettier": true,
112+
"rules": {
113+
"unicorn/prefer-at": "off"
114+
}
112115
}
113116
}

readme.md

+39-39
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@
1212

1313
## Contents
1414

15-
* [What is this?](#what-is-this)
16-
* [When should I use this?](#when-should-i-use-this)
17-
* [Install](#install)
18-
* [Use](#use)
19-
* [API](#api)
20-
* [`visit(tree[, test], visitor[, reverse])`](#visittree-test-visitor-reverse)
21-
* [`CONTINUE`](#continue)
22-
* [`EXIT`](#exit)
23-
* [`SKIP`](#skip)
24-
* [`Action`](#action)
25-
* [`ActionTuple`](#actiontuple)
26-
* [`BuildVisitor`](#buildvisitor)
27-
* [`Index`](#index)
28-
* [`Test`](#test)
29-
* [`Visitor`](#visitor)
30-
* [`VisitorResult`](#visitorresult)
31-
* [Types](#types)
32-
* [Compatibility](#compatibility)
33-
* [Related](#related)
34-
* [Contribute](#contribute)
35-
* [License](#license)
15+
* [What is this?](#what-is-this)
16+
* [When should I use this?](#when-should-i-use-this)
17+
* [Install](#install)
18+
* [Use](#use)
19+
* [API](#api)
20+
* [`visit(tree[, test], visitor[, reverse])`](#visittree-test-visitor-reverse)
21+
* [`CONTINUE`](#continue)
22+
* [`EXIT`](#exit)
23+
* [`SKIP`](#skip)
24+
* [`Action`](#action)
25+
* [`ActionTuple`](#actiontuple)
26+
* [`BuildVisitor`](#buildvisitor)
27+
* [`Index`](#index)
28+
* [`Test`](#test)
29+
* [`Visitor`](#visitor)
30+
* [`VisitorResult`](#visitorresult)
31+
* [Types](#types)
32+
* [Compatibility](#compatibility)
33+
* [Related](#related)
34+
* [Contribute](#contribute)
35+
* [License](#license)
3636

3737
## What is this?
3838

@@ -160,12 +160,12 @@ traversed.
160160

161161
###### Parameters
162162

163-
* `node` ([`Node`][node])
164-
— found node
165-
* `index` (`number` or `undefined`)
166-
— index of `node` in `parent`
167-
* `parent` ([`Node`][node] or `undefined`)
168-
— parent of `node`
163+
* `node` ([`Node`][node])
164+
— found node
165+
* `index` (`number` or `undefined`)
166+
— index of `node` in `parent`
167+
* `parent` ([`Node`][node] or `undefined`)
168+
— parent of `node`
169169

170170
###### Returns
171171

@@ -203,18 +203,18 @@ compatible with Node.js 16.
203203

204204
## Related
205205

206-
* [`unist-util-visit-parents`][vp]
207-
— walk the tree with a stack of parents
208-
* [`unist-util-filter`](https://github.com/syntax-tree/unist-util-filter)
209-
— create a new tree with all nodes that pass a test
210-
* [`unist-util-map`](https://github.com/syntax-tree/unist-util-map)
211-
— create a new tree with all nodes mapped by a given function
212-
* [`unist-util-flatmap`](https://gitlab.com/staltz/unist-util-flatmap)
213-
— create a new tree by mapping (to an array) with the given function
214-
* [`unist-util-remove`](https://github.com/syntax-tree/unist-util-remove)
215-
— remove nodes from a tree that pass a test
216-
* [`unist-util-select`](https://github.com/syntax-tree/unist-util-select)
217-
— select nodes with CSS-like selectors
206+
* [`unist-util-visit-parents`][vp]
207+
— walk the tree with a stack of parents
208+
* [`unist-util-filter`](https://github.com/syntax-tree/unist-util-filter)
209+
— create a new tree with all nodes that pass a test
210+
* [`unist-util-map`](https://github.com/syntax-tree/unist-util-map)
211+
— create a new tree with all nodes mapped by a given function
212+
* [`unist-util-flatmap`](https://gitlab.com/staltz/unist-util-flatmap)
213+
— create a new tree by mapping (to an array) with the given function
214+
* [`unist-util-remove`](https://github.com/syntax-tree/unist-util-remove)
215+
— remove nodes from a tree that pass a test
216+
* [`unist-util-select`](https://github.com/syntax-tree/unist-util-select)
217+
— select nodes with CSS-like selectors
218218

219219
## Contribute
220220

0 commit comments

Comments
 (0)