Skip to content
This repository was archived by the owner on Aug 9, 2023. It is now read-only.

Commit 3d6b4e8

Browse files
committed
Update dev-dependencies
1 parent 911a2f2 commit 3d6b4e8

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
"hast-util-is-element": "^1.0.0"
2626
},
2727
"devDependencies": {
28-
"browserify": "^14.0.0",
28+
"browserify": "^16.0.0",
2929
"esmangle": "^1.0.1",
30-
"nyc": "^11.0.0",
31-
"remark-cli": "^4.0.0",
32-
"remark-preset-wooorm": "^3.0.0",
30+
"nyc": "^12.0.0",
31+
"remark-cli": "^5.0.0",
32+
"remark-preset-wooorm": "^4.0.0",
3333
"tape": "^4.4.0",
34-
"xo": "^0.18.0"
34+
"xo": "^0.21.0"
3535
},
3636
"scripts": {
3737
"build-md": "remark . --quiet --frail --output",

test.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
var test = require('tape');
4-
var menuState = require('./');
4+
var menuState = require('.');
55

66
test('menuState', function (t) {
77
t.equal(menuState(), null, 'should return `null` without nodes');
@@ -84,17 +84,17 @@ test('menuState', function (t) {
8484
);
8585

8686
t.equal(
87-
menuState([
88-
{
89-
type: 'element',
90-
tagName: 'menu',
91-
properties: {type: 'context'}
92-
},
93-
null,
94-
{type: 'element', tagName: 'menu'}
95-
]),
96-
'toolbar',
97-
'should not walk higher than non-elements'
87+
menuState([
88+
{
89+
type: 'element',
90+
tagName: 'menu',
91+
properties: {type: 'context'}
92+
},
93+
null,
94+
{type: 'element', tagName: 'menu'}
95+
]),
96+
'toolbar',
97+
'should not walk higher than non-elements'
9898
);
9999

100100
t.equal(

0 commit comments

Comments
 (0)