Skip to content

Commit 13307e8

Browse files
committed
Update dev-dependencies
1 parent ee8834b commit 13307e8

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

index.test-d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
import {Node, Parent} from 'unist'
1+
import type {Node, Parent} from 'unist'
22
import {
33
expectType,
44
expectAssignable,
55
expectNotAssignable,
66
expectError
77
} from 'tsd'
8-
import {Heading} from 'mdast'
8+
import type {Heading} from 'mdast'
99
import {unified} from 'unified'
1010
import {is, convert} from './index.js'
1111

1212
/* Setup. */
13+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
1314
interface Element extends Parent {
1415
type: 'element'
1516
tagName: string
@@ -18,6 +19,7 @@ interface Element extends Parent {
1819
children: Node[]
1920
}
2021

22+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
2123
interface Paragraph extends Parent {
2224
type: 'ParagraphNode'
2325
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@
4444
"fast-check": "^3.0.0",
4545
"lodash": "^4.0.0",
4646
"prettier": "^2.0.0",
47-
"remark-cli": "^10.0.0",
47+
"remark-cli": "^11.0.0",
4848
"remark-preset-wooorm": "^9.0.0",
4949
"rimraf": "^3.0.0",
5050
"tape": "^5.0.0",
51-
"tsd": "^0.20.0",
51+
"tsd": "^0.25.0",
5252
"type-coverage": "^2.0.0",
5353
"typescript": "^4.0.0",
5454
"unified": "^10.0.0",
55-
"xo": "^0.49.0"
55+
"xo": "^0.53.0"
5656
},
5757
"scripts": {
5858
"prepack": "npm run build && npm run format",

0 commit comments

Comments
 (0)