File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 5555 "@types/node" : " ^20.0.0" ,
5656 "@types/react" : " ^18.0.0" ,
5757 "@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" ,
6060 "estree-util-visit" : " ^2.0.0" ,
61- "hastscript" : " ^8 .0.0" ,
61+ "hastscript" : " ^9 .0.0" ,
6262 "prettier" : " ^3.0.0" ,
6363 "react" : " ^18.0.0" ,
6464 "react-dom" : " ^18.0.0" ,
6565 "remark-cli" : " ^12.0.0" ,
6666 "remark-gfm" : " ^4.0.0" ,
6767 "remark-preset-wooorm" : " ^9.0.0" ,
68- "sval" : " ^0.4 .0" ,
68+ "sval" : " ^0.5 .0" ,
6969 "type-coverage" : " ^2.0.0" ,
7070 "typescript" : " ^5.0.0" ,
71- "xo" : " ^0.56 .0"
71+ "xo" : " ^0.58 .0"
7272 },
7373 "scripts" : {
7474 "prepack" : " npm run build && npm run format" ,
121121 ],
122122 "prettier" : true ,
123123 "rules" : {
124+ "logical-assignment-operators" : " off" ,
124125 "unicorn/prefer-at" : " off" ,
125- "unicorn/prefer-string-replace-all" : " off"
126+ "unicorn/prefer-string-replace-all" : " off" ,
127+ "unicorn/prevent-abbreviations" : " off"
126128 }
127129 }
128130}
Original file line number Diff line number Diff line change @@ -1292,6 +1292,7 @@ function createEvaluater() {
12921292 sourceType : 'module'
12931293 }
12941294
1295+ // @ts -expect-error: note: `sval` types are wrong, programs are nodes.
12951296 interpreter . run ( program )
12961297 const value = /** @type {unknown } */ (
12971298 // type-coverage:ignore-next-line
@@ -1317,6 +1318,7 @@ function createEvaluater() {
13171318 }
13181319 } )
13191320
1321+ // @ts -expect-error: note: `sval` types are wrong, programs are nodes.
13201322 interpreter . run ( program )
13211323 }
13221324 }
You can’t perform that action at this time.
0 commit comments