File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
coverage /
2
2
mdast-util-to-string.js
3
3
mdast-util-to-string.min.js
4
+ * .json
5
+ * .md
Original file line number Diff line number Diff line change 31
31
"devDependencies" : {
32
32
"browserify" : " ^16.0.0" ,
33
33
"nyc" : " ^15.0.0" ,
34
- "prettier" : " ^1 .0.0" ,
35
- "remark-cli" : " ^7 .0.0" ,
36
- "remark-preset-wooorm" : " ^6 .0.0" ,
37
- "tape" : " ^4.4 .0" ,
34
+ "prettier" : " ^2 .0.0" ,
35
+ "remark-cli" : " ^8 .0.0" ,
36
+ "remark-preset-wooorm" : " ^7 .0.0" ,
37
+ "tape" : " ^5.0 .0" ,
38
38
"tinyify" : " ^2.0.0" ,
39
- "xo" : " ^0.27 .0"
39
+ "xo" : " ^0.32 .0"
40
40
},
41
41
"scripts" : {
42
- "format" : " remark . -qfo && prettier --write \" **/*.js \" && xo --fix" ,
42
+ "format" : " remark . -qfo && prettier . --write && xo --fix" ,
43
43
"build-bundle" : " browserify . -s mdastUtilToString > mdast-util-to-string.js" ,
44
44
"build-mangle" : " browserify . -s mdastUtilToString -p tinyify > mdast-util-to-string.min.js" ,
45
45
"build" : " npm run build-bundle && npm run build-mangle" ,
Original file line number Diff line number Diff line change 3
3
var test = require ( 'tape' )
4
4
var toString = require ( '.' )
5
5
6
- test ( 'mdast-util-to-string' , function ( t ) {
6
+ test ( 'mdast-util-to-string' , function ( t ) {
7
7
t . equal ( toString ( ) , '' , 'should not fail on a missing node' )
8
8
t . equal ( toString ( null ) , '' , 'should not fail on `null` missing node' )
9
9
You can’t perform that action at this time.
0 commit comments