Skip to content

Commit e8392be

Browse files
committed
Update dev-dependencies
1 parent dcade6e commit e8392be

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
},
2727
"devDependencies": {
2828
"browserify": "^16.0.0",
29-
"nyc": "^13.0.0",
30-
"prettier": "^1.14.2",
29+
"nyc": "^14.0.0",
30+
"prettier": "^1.0.0",
3131
"remark-cli": "^6.0.0",
32-
"remark-preset-wooorm": "^4.0.0",
32+
"remark-preset-wooorm": "^5.0.0",
3333
"tape": "^4.0.0",
34-
"tinyify": "^2.4.3",
35-
"xo": "^0.23.0"
34+
"tinyify": "^2.0.0",
35+
"xo": "^0.24.0"
3636
},
3737
"scripts": {
3838
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict'
22

33
/* eslint-disable import/no-unassigned-import */
4-
54
require('./node')
65
require('./children')
76
require('./root')
@@ -17,3 +16,4 @@ require('./link-reference')
1716
require('./image-reference')
1817
require('./footnote-reference')
1918
require('./table')
19+
/* eslint-enable import/no-unassigned-import */

test/link-reference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ test('assert(linkReference)', function(t) {
4141
children: []
4242
})
4343
},
44-
/`referenceType` must be `shortcut`, `collapsed`, or `full`: `{ type: 'linkReference',\n {2}identifier: '1',\n {2}referenceType: 1,\n {2}children: \[] }`$/,
44+
/`referenceType` must be `shortcut`, `collapsed`, or `full`/,
4545
'should throw if `referenceType` is not a `string`'
4646
)
4747

test/root.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test('assert(root)', function(t) {
1616
function() {
1717
assert({type: 'paragraph', children: [{type: 'root', children: []}]})
1818
},
19-
/`root` should not have a parent: `{ type: 'root', children: \[] }` in `{ type: 'paragraph',\n {2}children: \[ { type: 'root', children: \[] } ] }`$/,
19+
/`root` should not have a parent: `{ type: 'root', children: \[] }`/,
2020
'should throw if a `root` has a parent'
2121
)
2222

0 commit comments

Comments
 (0)