Skip to content

Commit 1b34892

Browse files
committed
Update dev-dependencies
1 parent 8e28095 commit 1b34892

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@
3030
"index.js"
3131
],
3232
"dependencies": {
33-
"@types/mdast": "^3.0.3",
33+
"@types/mdast": "^3.0.0",
3434
"unist-util-visit": "^2.0.0"
3535
},
3636
"devDependencies": {
3737
"browserify": "^16.0.0",
38-
"dtslint": "^3.4.2",
38+
"dtslint": "^3.0.0",
3939
"nyc": "^15.0.0",
4040
"prettier": "^2.0.5",
4141
"remark": "^12.0.0",
4242
"remark-cli": "^8.0.0",
4343
"remark-preset-wooorm": "^7.0.0",
44-
"tape": "^4.0.0",
44+
"tape": "^5.0.0",
4545
"tinyify": "^2.0.0",
46-
"xo": "^0.29.1"
46+
"xo": "^0.30.0"
4747
},
4848
"scripts": {
4949
"format": "remark . -qfo && prettier --write . && xo --fix --ignore types",
@@ -73,6 +73,7 @@
7373
"prettier": true,
7474
"esnext": false,
7575
"ignore": [
76+
"types",
7677
"mdast-util-definitions.js"
7778
]
7879
},

test.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ test('mdast-util-definitions', function (t) {
1919
tree = remark().parse('[example]: https://example.com "Example"')
2020
getDefinition = definitions(tree)
2121

22-
t.deepEqual(
22+
t.deepLooseEqual(
2323
getDefinition('example'),
2424
{
2525
type: 'definition',
2626
identifier: 'example',
2727
label: 'example',
28-
url: 'https://example.com',
2928
title: 'Example',
29+
url: 'https://example.com',
3030
position: {
31-
start: {column: 1, line: 1, offset: 0},
32-
end: {column: 41, line: 1, offset: 40},
31+
start: {line: 1, column: 1, offset: 0},
32+
end: {line: 1, column: 41, offset: 40},
3333
indent: []
3434
}
3535
},
@@ -41,17 +41,17 @@ test('mdast-util-definitions', function (t) {
4141
tree = remark().parse('[__proto__]: https://proto.com "Proto"')
4242
getDefinition = definitions(tree)
4343

44-
t.deepEqual(
44+
t.deepLooseEqual(
4545
getDefinition('__proto__'),
4646
{
4747
type: 'definition',
4848
identifier: '__proto__',
4949
label: '__proto__',
50-
url: 'https://proto.com',
5150
title: 'Proto',
51+
url: 'https://proto.com',
5252
position: {
53-
start: {column: 1, line: 1, offset: 0},
54-
end: {column: 39, line: 1, offset: 38},
53+
start: {line: 1, column: 1, offset: 0},
54+
end: {line: 1, column: 39, offset: 38},
5555
indent: []
5656
}
5757
},

0 commit comments

Comments
 (0)