Skip to content

Commit a18ee4e

Browse files
committed
Update dev-dependencies
1 parent 3f3432b commit a18ee4e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@
2727
},
2828
"devDependencies": {
2929
"browserify": "^16.0.0",
30-
"is-hidden": "^1.1.0",
30+
"is-hidden": "^1.0.0",
3131
"not": "^0.1.0",
3232
"nyc": "^14.0.0",
3333
"parse5": "^5.0.0",
3434
"prettier": "^1.0.0",
35-
"remark-cli": "^6.0.0",
36-
"remark-preset-wooorm": "^5.0.0",
35+
"remark-cli": "^7.0.0",
36+
"remark-preset-wooorm": "^6.0.0",
3737
"tape": "^4.0.0",
3838
"tinyify": "^2.0.0",
3939
"to-vfile": "^6.0.0",
40-
"unist-util-visit": "^1.0.0",
41-
"xo": "^0.24.0"
40+
"unist-util-visit": "^2.0.0",
41+
"xo": "^0.25.0"
4242
},
4343
"scripts": {
4444
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ test('fixtures', function(t) {
380380

381381
try {
382382
expected = JSON.parse(fs.readFileSync(options.out))
383-
} catch (error) {
383+
} catch (_) {
384384
// New fixture.
385385
fs.writeFileSync(options.out, JSON.stringify(actual, 0, 2) + '\n')
386386
return
@@ -450,7 +450,7 @@ function cleaner(node) {
450450
function log(label, actual, expected) {
451451
try {
452452
assert.deepStrictEqual(actual, expected, label)
453-
} catch (error) {
453+
} catch (_) {
454454
console.log('actual:%s:', label)
455455
console.dir(actual, {depth: null})
456456
console.log('expected:%s:', label)

0 commit comments

Comments
 (0)