Skip to content

Commit

Permalink
build(deps): Bump entities from 5.0.0 to 6.0.0 (#1983)
Browse files Browse the repository at this point in the history

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Felix <[email protected]>
  • Loading branch information
dependabot[bot] and fb55 authored Dec 23, 2024
1 parent ecdb071 commit 05291ee
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"entities": "^5.0.0"
"entities": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
Expand Down
2 changes: 1 addition & 1 deletion src/Parser.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Tokenizer, { type Callbacks, QuoteType } from "./Tokenizer.js";
import { fromCodePoint } from "entities/dist/decode.js";
import { fromCodePoint } from "entities/decode";

const formTags = new Set([
"input",
Expand Down
2 changes: 1 addition & 1 deletion src/Tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
DecodingMode,
htmlDecodeTree,
xmlDecodeTree,
} from "entities/dist/decode.js";
} from "entities/decode";

const enum CharCodes {
Tab = 0x9, // "\t"
Expand Down

0 comments on commit 05291ee

Please sign in to comment.