Skip to content

Commit b1aec36

Browse files
committed
Update dev-dependencies
1 parent c26a78d commit b1aec36

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

index.test-d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import {unified} from 'unified'
2-
import {Node} from 'unist'
2+
import type {Node} from 'unist'
33
import {expectType, expectNotType, expectError} from 'tsd'
4-
import {Element} from 'hast'
4+
import type {Element} from 'hast'
55
import {isElement, convertElement} from './index.js'
66

77
/* Setup. */
8-
interface Section extends Element {
8+
type Section = {
99
tagName: 'section'
10-
}
10+
} & Element
1111

12-
interface Article extends Element {
12+
type Article = {
1313
tagName: 'article'
14-
}
14+
} & Element
1515

1616
const section: Element = {
1717
type: 'element',

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@
3939
"@types/tape": "^4.0.0",
4040
"c8": "^7.0.0",
4141
"prettier": "^2.0.0",
42-
"remark-cli": "^10.0.0",
42+
"remark-cli": "^11.0.0",
4343
"remark-preset-wooorm": "^9.0.0",
4444
"rimraf": "^3.0.0",
4545
"tape": "^5.0.0",
46-
"tsd": "^0.20.0",
46+
"tsd": "^0.25.0",
4747
"type-coverage": "^2.0.0",
4848
"typescript": "^4.0.0",
4949
"unified": "^10.0.0",
50-
"xo": "^0.49.0"
50+
"xo": "^0.53.0"
5151
},
5252
"scripts": {
5353
"prepack": "npm run build && npm run format",

0 commit comments

Comments
 (0)