File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11coverage /
22mdast-util-to-string.js
33mdast-util-to-string.min.js
4+ * .json
5+ * .md
Original file line number Diff line number Diff line change 3131 "devDependencies" : {
3232 "browserify" : " ^16.0.0" ,
3333 "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" ,
3838 "tinyify" : " ^2.0.0" ,
39- "xo" : " ^0.27 .0"
39+ "xo" : " ^0.32 .0"
4040 },
4141 "scripts" : {
42- "format" : " remark . -qfo && prettier --write \" **/*.js \" && xo --fix" ,
42+ "format" : " remark . -qfo && prettier . --write && xo --fix" ,
4343 "build-bundle" : " browserify . -s mdastUtilToString > mdast-util-to-string.js" ,
4444 "build-mangle" : " browserify . -s mdastUtilToString -p tinyify > mdast-util-to-string.min.js" ,
4545 "build" : " npm run build-bundle && npm run build-mangle" ,
Original file line number Diff line number Diff line change 33var test = require ( 'tape' )
44var toString = require ( '.' )
55
6- test ( 'mdast-util-to-string' , function ( t ) {
6+ test ( 'mdast-util-to-string' , function ( t ) {
77 t . equal ( toString ( ) , '' , 'should not fail on a missing node' )
88 t . equal ( toString ( null ) , '' , 'should not fail on `null` missing node' )
99
You can’t perform that action at this time.
0 commit comments