File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 55
55
"@types/node" : " ^20.0.0" ,
56
56
"@types/react" : " ^18.0.0" ,
57
57
"@types/react-dom" : " ^18.0.0" ,
58
- "c8" : " ^8 .0.0" ,
59
- "esbuild" : " ^0.19 .0" ,
58
+ "c8" : " ^9 .0.0" ,
59
+ "esbuild" : " ^0.20 .0" ,
60
60
"estree-util-visit" : " ^2.0.0" ,
61
- "hastscript" : " ^8 .0.0" ,
61
+ "hastscript" : " ^9 .0.0" ,
62
62
"prettier" : " ^3.0.0" ,
63
63
"react" : " ^18.0.0" ,
64
64
"react-dom" : " ^18.0.0" ,
65
65
"remark-cli" : " ^12.0.0" ,
66
66
"remark-gfm" : " ^4.0.0" ,
67
67
"remark-preset-wooorm" : " ^9.0.0" ,
68
- "sval" : " ^0.4 .0" ,
68
+ "sval" : " ^0.5 .0" ,
69
69
"type-coverage" : " ^2.0.0" ,
70
70
"typescript" : " ^5.0.0" ,
71
- "xo" : " ^0.56 .0"
71
+ "xo" : " ^0.58 .0"
72
72
},
73
73
"scripts" : {
74
74
"prepack" : " npm run build && npm run format" ,
121
121
],
122
122
"prettier" : true ,
123
123
"rules" : {
124
+ "logical-assignment-operators" : " off" ,
124
125
"unicorn/prefer-at" : " off" ,
125
- "unicorn/prefer-string-replace-all" : " off"
126
+ "unicorn/prefer-string-replace-all" : " off" ,
127
+ "unicorn/prevent-abbreviations" : " off"
126
128
}
127
129
}
128
130
}
Original file line number Diff line number Diff line change @@ -1292,6 +1292,7 @@ function createEvaluater() {
1292
1292
sourceType : 'module'
1293
1293
}
1294
1294
1295
+ // @ts -expect-error: note: `sval` types are wrong, programs are nodes.
1295
1296
interpreter . run ( program )
1296
1297
const value = /** @type {unknown } */ (
1297
1298
// type-coverage:ignore-next-line
@@ -1317,6 +1318,7 @@ function createEvaluater() {
1317
1318
}
1318
1319
} )
1319
1320
1321
+ // @ts -expect-error: note: `sval` types are wrong, programs are nodes.
1320
1322
interpreter . run ( program )
1321
1323
}
1322
1324
}
You can’t perform that action at this time.
0 commit comments