File tree Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
1
coverage /
2
2
hast-util-interactive.js
3
3
hast-util-interactive.min.js
4
+ * .json
5
+ * .md
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
- - lts/dubnium
4
- - node
3
+ - lts/dubnium
4
+ - node
5
5
after_script : bash <(curl -s https://codecov.io/bash)
6
6
deploy :
7
7
provider : releases
8
8
skip_cleanup : true
9
9
api_key :
10
10
secure : qxDMJfy+XBjKzk1rW3TzTj+W5rY0LjW+0VtuiDf2G/yxAPbPK9OeKdLCwnsqIk/RZdEEi8OHxmibAD22uD4kUq6E3rMDQOYOgC/NU04vNkpfY84kM+6+3r0ANgEaynKLo0HdUOQKRiz1LV3VRFb8ZKwhxHFm/dgrIVSEgYzNELTSqrF20pocB79l+gnsyMQeq4zA+4/boCnmaBmdqMBd5GunTpdN3fbXTbIkr7enGMy5QYvYBkATn7D+p0PgYohjlJN2as7cawCQzkvLxUme8yA3Y+suUsspOSuifmxH4/FX8Xgq1cLgbTTzeH7KJlJq6KlCAr/6MlNHoSb/eXK8k03S9cigIrYgBTs7D1hLQJ5S5A3lRLd0/RY55eiQlF/5dfcaIYgBQLwWn2To0WP+UwkKotvJ7zVSMmA8NAPaexNPYY98/xTefKoGHBZflyNxKlr2bxcQeuvV3a/xiC9VxObRmCyAOrjig8HyATVd+4PeqZtr02ZeXTBYOW+ciCZJpi0tlEH5Hv9l5JLLu9vykXmlsx30IyX7usEZtIe7PkjlRkpq98jSdUziNtRf+uZs2riUesHkbA7BNO5XMMxazliOgo8K5o+QXC9F9fQfJITBBFaRZ0zssSu77LNIMrGrUZQeXPa8TJICde+x+b7sqCK4eNGApIQPRYc81AadUsk=
11
11
file :
12
- - " hast-util-interactive.js"
13
- - " hast-util-interactive.min.js"
12
+ - ' hast-util-interactive.js'
13
+ - ' hast-util-interactive.min.js'
14
14
on :
15
15
tags : true
Original file line number Diff line number Diff line change 33
33
"devDependencies" : {
34
34
"browserify" : " ^16.0.0" ,
35
35
"nyc" : " ^15.0.0" ,
36
- "prettier" : " ^1 .0.0" ,
37
- "remark-cli" : " ^7 .0.0" ,
38
- "remark-preset-wooorm" : " ^6 .0.0" ,
39
- "tape" : " ^4 .0.0" ,
36
+ "prettier" : " ^2 .0.0" ,
37
+ "remark-cli" : " ^8 .0.0" ,
38
+ "remark-preset-wooorm" : " ^7 .0.0" ,
39
+ "tape" : " ^5 .0.0" ,
40
40
"tinyify" : " ^2.0.0" ,
41
- "xo" : " ^0.27 .0"
41
+ "xo" : " ^0.32 .0"
42
42
},
43
43
"scripts" : {
44
- "format" : " remark . -qfo && prettier --write \" **/*.js \" && xo --fix" ,
44
+ "format" : " remark . -qfo && prettier . --write && xo --fix" ,
45
45
"build-bundle" : " browserify . -s hastUtilInteractive > hast-util-interactive.js" ,
46
46
"build-mangle" : " browserify . -s hastUtilInteractive -p tinyify > hast-util-interactive.min.js" ,
47
47
"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 interactive = require ( '.' )
5
5
6
- test ( 'interactive' , function ( t ) {
6
+ test ( 'interactive' , function ( t ) {
7
7
t . equal ( interactive ( ) , false , 'should return `false` without node' )
8
8
t . equal ( interactive ( null ) , false , 'should return `false` with `null`' )
9
9
You can’t perform that action at this time.
0 commit comments