File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ var html = require('rehype-parse');
8
8
var q = require ( 'hast-util-select' ) ;
9
9
var toString = require ( 'hast-util-to-string' ) ;
10
10
var bail = require ( 'bail' ) ;
11
- var list = require ( './ ' ) ;
11
+ var list = require ( '.' ) ;
12
12
13
13
https . get ( 'https://html.spec.whatwg.org/multipage/syntax.html#elements-2' , function ( res ) {
14
14
res . pipe ( concat ( onconcat ) ) . on ( 'error' , bail ) ;
Original file line number Diff line number Diff line change 26
26
"dependencies" : {},
27
27
"devDependencies" : {
28
28
"bail" : " ^1.0.0" ,
29
- "browserify" : " ^14.1 .0" ,
29
+ "browserify" : " ^16.0 .0" ,
30
30
"concat-stream" : " ^1.6.0" ,
31
31
"esmangle" : " ^1.0.0" ,
32
32
"hast-util-select" : " ^1.0.1" ,
33
33
"hast-util-to-string" : " ^1.0.0" ,
34
34
"rehype-parse" : " ^4.0.0" ,
35
- "remark-cli" : " ^3 .0.0" ,
36
- "remark-preset-wooorm" : " ^3 .0.0" ,
35
+ "remark-cli" : " ^5 .0.0" ,
36
+ "remark-preset-wooorm" : " ^4 .0.0" ,
37
37
"tape" : " ^4.0.0" ,
38
38
"unified" : " ^6.1.5" ,
39
- "xo" : " ^0.18 .0"
39
+ "xo" : " ^0.20 .0"
40
40
},
41
41
"scripts" : {
42
42
"build-md" : " remark . -qfo" ,
51
51
"xo" : {
52
52
"space" : true ,
53
53
"esnext" : false ,
54
+ "rules" : {
55
+ "no-var" : " off" ,
56
+ "prefer-arrow-callback" : " off"
57
+ },
54
58
"ignores" : [
55
59
" html-void-elements.min.js"
56
60
]
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
var test = require ( 'tape' ) ;
4
- var htmlVoidElements = require ( './ ' ) ;
4
+ var htmlVoidElements = require ( '.' ) ;
5
5
6
6
test ( 'htmlVoidElements' , function ( t ) {
7
7
t . ok (
You can’t perform that action at this time.
0 commit comments