Skip to content

Commit e3b8851

Browse files
committed
Update dev-dependencies
1 parent aa17c1a commit e3b8851

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
],
3030
"types": "types/index.d.ts",
3131
"dependencies": {
32-
"@types/parse5": "^5.0.2",
32+
"@types/parse5": "^5.0.0",
3333
"ccount": "^1.0.3",
3434
"hastscript": "^5.0.0",
3535
"property-information": "^5.0.0",
@@ -39,19 +39,19 @@
3939
},
4040
"devDependencies": {
4141
"browserify": "^16.0.0",
42-
"dtslint": "^3.5.2",
42+
"dtslint": "^3.0.0",
4343
"is-hidden": "^1.0.0",
4444
"not": "^0.1.0",
4545
"nyc": "^15.0.0",
46-
"parse5": "^5.0.0",
47-
"prettier": "^2.0.5",
48-
"remark-cli": "^7.0.0",
49-
"remark-preset-wooorm": "^6.0.0",
50-
"tape": "^4.0.0",
46+
"parse5": "^6.0.0",
47+
"prettier": "^2.0.0",
48+
"remark-cli": "^8.0.0",
49+
"remark-preset-wooorm": "^7.0.0",
50+
"tape": "^5.0.0",
5151
"tinyify": "^2.0.0",
5252
"to-vfile": "^6.0.0",
5353
"unist-util-visit": "^2.0.0",
54-
"xo": "^0.27.0"
54+
"xo": "^0.30.0"
5555
},
5656
"scripts": {
5757
"format": "remark . -qfo && prettier --write . && xo --fix",
@@ -75,6 +75,7 @@
7575
"prettier": true,
7676
"esnext": false,
7777
"rules": {
78+
"unicorn/no-fn-reference-in-iterator": "off",
7879
"guard-for-in": "off"
7980
},
8081
"ignores": [

test/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -355,17 +355,17 @@ test('fixtures', function (t) {
355355

356356
function each(fixture) {
357357
t.test(fixture, function (st) {
358-
var opts = {
358+
var options = {
359359
file: vfile.readSync(join(base, fixture, 'index.html')),
360360
out: join(base, fixture, 'index.json')
361361
}
362362

363363
st.plan(4)
364364

365-
checkYesYes(st, fixture, opts)
366-
checkNoYes(st, fixture, opts)
367-
checkYesNo(st, fixture, opts)
368-
checkNoNo(st, fixture, opts)
365+
checkYesYes(st, fixture, options)
366+
checkNoYes(st, fixture, options)
367+
checkYesNo(st, fixture, options)
368+
checkNoNo(st, fixture, options)
369369
})
370370
}
371371

0 commit comments

Comments
 (0)