File tree 2 files changed +17
-8
lines changed
2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 28
28
],
29
29
"dependencies" : {
30
30
"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 " ,
33
33
"space-separated-tokens" : " ^1.0.0"
34
34
},
35
35
"devDependencies" : {
36
36
"browserify" : " ^16.0.0" ,
37
37
"nyc" : " ^14.0.0" ,
38
38
"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" ,
41
41
"svg-tag-names" : " ^2.0.0" ,
42
42
"tape" : " ^4.0.0" ,
43
43
"tinyify" : " ^2.0.0" ,
44
- "xo" : " ^0.24 .0"
44
+ "xo" : " ^0.25 .0"
45
45
},
46
46
"scripts" : {
47
47
"generate" : " node build" ,
Original file line number Diff line number Diff line change @@ -725,7 +725,10 @@ test('hastscript', function(t) {
725
725
type : 'element' ,
726
726
tagName : 'div' ,
727
727
properties : { } ,
728
- children : [ { type : 'text' , value : 'foo' } , { type : 'text' , value : 'bar' } ]
728
+ children : [
729
+ { type : 'text' , value : 'foo' } ,
730
+ { type : 'text' , value : 'bar' }
731
+ ]
729
732
} ,
730
733
'should support nodes'
731
734
)
@@ -760,7 +763,10 @@ test('hastscript', function(t) {
760
763
type : 'element' ,
761
764
tagName : 'div' ,
762
765
properties : { } ,
763
- children : [ { type : 'text' , value : 'foo' } , { type : 'text' , value : 'bar' } ]
766
+ children : [
767
+ { type : 'text' , value : 'foo' } ,
768
+ { type : 'text' , value : 'bar' }
769
+ ]
764
770
} ,
765
771
'should support `Array.<string>` for a `Text`s'
766
772
)
@@ -800,7 +806,10 @@ test('hastscript', function(t) {
800
806
type : 'element' ,
801
807
tagName : 'strong' ,
802
808
properties : { } ,
803
- children : [ { type : 'text' , value : 'foo' } , { type : 'text' , value : 'bar' } ]
809
+ children : [
810
+ { type : 'text' , value : 'foo' } ,
811
+ { type : 'text' , value : 'bar' }
812
+ ]
804
813
} ,
805
814
'should allow omitting `properties` for an array'
806
815
)
You can’t perform that action at this time.
0 commit comments