Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Apr 4, 2024
1 parent cf072f3 commit 05c087b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,20 @@
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"c8": "^8.0.0",
"esbuild": "^0.19.0",
"c8": "^9.0.0",
"esbuild": "^0.20.0",
"estree-util-visit": "^2.0.0",
"hastscript": "^8.0.0",
"hastscript": "^9.0.0",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remark-cli": "^12.0.0",
"remark-gfm": "^4.0.0",
"remark-preset-wooorm": "^9.0.0",
"sval": "^0.4.0",
"sval": "^0.5.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"xo": "^0.56.0"
"xo": "^0.58.0"
},
"scripts": {
"prepack": "npm run build && npm run format",
Expand Down Expand Up @@ -121,8 +121,10 @@
],
"prettier": true,
"rules": {
"logical-assignment-operators": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-string-replace-all": "off"
"unicorn/prefer-string-replace-all": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}
2 changes: 2 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1292,6 +1292,7 @@ function createEvaluater() {
sourceType: 'module'
}

// @ts-expect-error: note: `sval` types are wrong, programs are nodes.
interpreter.run(program)
const value = /** @type {unknown} */ (
// type-coverage:ignore-next-line
Expand All @@ -1317,6 +1318,7 @@ function createEvaluater() {
}
})

// @ts-expect-error: note: `sval` types are wrong, programs are nodes.
interpreter.run(program)
}
}
Expand Down

0 comments on commit 05c087b

Please sign in to comment.