Skip to content

Commit 05c087b

Browse files
committed
Update dev-dependencies
1 parent cf072f3 commit 05c087b

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

package.json

+8-6
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@
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",
@@ -121,8 +121,10 @@
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
}

test/index.js

+2
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)