Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/petite-signs-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-llamas-search.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# htmljs-parser

## 5.11.0

### Minor Changes

- [#222](https://github.com/marko-js/htmljs-parser/pull/222) [`221d3b7`](https://github.com/marko-js/htmljs-parser/commit/221d3b71d71593f63347a01cb8a0d195377fe7b2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Replace TypeScript enums with erasable const modules so the source runs directly under node's type stripping. The public `TagType`, `ErrorCode`, and `Validity` values keep their runtime shape and values, and their types are now the equivalent literal unions. Constant values remain fully inlined in the published bundles.

### Patch Changes

- [#220](https://github.com/marko-js/htmljs-parser/pull/220) [`85c8973`](https://github.com/marko-js/htmljs-parser/commit/85c8973693a005f925738f5f03a90a3221005b70) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Refactor parser to allow individual states to process multiple characters. This allows for eager scanning, simplifies things some, and improves performance by about 30% in realworld tempaltes.

## 5.10.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
{
"name": "htmljs-parser",
"version": "5.10.2",
"version": "5.11.0",
"description": "An HTML parser recognizes content and string placeholders and allows JavaScript expressions as attribute values",
"keywords": [
"HTML",
Expand Down
Loading