Skip to content

Commit dc735dd

Browse files
committed
Update dev-dependencies
1 parent 62bbd38 commit dc735dd

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@
2828
],
2929
"dependencies": {
3030
"comma-separated-tokens": "^1.0.0",
31-
"hast-util-parse-selector": "^2.2.0",
32-
"property-information": "^5.0.1",
31+
"hast-util-parse-selector": "^2.0.0",
32+
"property-information": "^5.0.0",
3333
"space-separated-tokens": "^1.0.0"
3434
},
3535
"devDependencies": {
3636
"browserify": "^16.0.0",
3737
"nyc": "^14.0.0",
3838
"prettier": "^1.0.0",
39-
"remark-cli": "^6.0.0",
40-
"remark-preset-wooorm": "^5.0.0",
39+
"remark-cli": "^7.0.0",
40+
"remark-preset-wooorm": "^6.0.0",
4141
"svg-tag-names": "^2.0.0",
4242
"tape": "^4.0.0",
4343
"tinyify": "^2.0.0",
44-
"xo": "^0.24.0"
44+
"xo": "^0.25.0"
4545
},
4646
"scripts": {
4747
"generate": "node build",

test.js

+12-3
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,10 @@ test('hastscript', function(t) {
725725
type: 'element',
726726
tagName: 'div',
727727
properties: {},
728-
children: [{type: 'text', value: 'foo'}, {type: 'text', value: 'bar'}]
728+
children: [
729+
{type: 'text', value: 'foo'},
730+
{type: 'text', value: 'bar'}
731+
]
729732
},
730733
'should support nodes'
731734
)
@@ -760,7 +763,10 @@ test('hastscript', function(t) {
760763
type: 'element',
761764
tagName: 'div',
762765
properties: {},
763-
children: [{type: 'text', value: 'foo'}, {type: 'text', value: 'bar'}]
766+
children: [
767+
{type: 'text', value: 'foo'},
768+
{type: 'text', value: 'bar'}
769+
]
764770
},
765771
'should support `Array.<string>` for a `Text`s'
766772
)
@@ -800,7 +806,10 @@ test('hastscript', function(t) {
800806
type: 'element',
801807
tagName: 'strong',
802808
properties: {},
803-
children: [{type: 'text', value: 'foo'}, {type: 'text', value: 'bar'}]
809+
children: [
810+
{type: 'text', value: 'foo'},
811+
{type: 'text', value: 'bar'}
812+
]
804813
},
805814
'should allow omitting `properties` for an array'
806815
)

0 commit comments

Comments
 (0)