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
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "htmlhint",
"version": "1.8.1",
"version": "1.9.0",
"description": "The Static Code Analysis Tool for your HTML",
"keywords": [
"html",
Expand All @@ -24,6 +24,13 @@
"license": "MIT",
"main": "dist/htmlhint.js",
"module": "dist/core/core.js",
"exports": {
".": {
"import": "./dist/core/core.js",
"require": "./dist/htmlhint.js"
},
"./package.json": "./package.json"
},
"bin": {
"htmlhint": "bin/htmlhint"
},
Expand Down
4 changes: 4 additions & 0 deletions website/src/content/docs/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ description: The release notes for HTMLHint, see what's changed with each new ve

import { Badge } from '@astrojs/starlight/components'

## 1.9.0 _(2026-02-09)_

- <Badge text="Feat" size="small" /> Add `exports` field to `package.json`

## 1.8.1 _(2026-02-06)_

- <Badge text="Fix" size="small" variant="danger" /> Improve [`attr-lowercase`](https://htmlhint.com/rules/attr-lowercase/) rule to handle SVG attributes
Expand Down
2 changes: 1 addition & 1 deletion website/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hero:
variant: minimal
banner:
content: |
v1.8.1 is now available! Check the <a href="/changelog/">changelog</a> to see what's new.
v1.9.0 is now available! Check the <a href="/changelog/">changelog</a> to see what's new.
tableOfContents: false
lastUpdated: false
editUrl: false
Expand Down