Skip to content

Commit

Permalink
Merge pull request #68 from natemoo-re/changeset-release/main
Browse files Browse the repository at this point in the history
[ci] release
  • Loading branch information
natemoo-re authored Feb 20, 2024
2 parents 007824d + 8d42d8d commit 93a1273
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
7 changes: 0 additions & 7 deletions .changeset/loud-panthers-look.md

This file was deleted.

18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ultrahtml

## 1.5.3

### Patch Changes

- ebc97e0: upgrades `dts-bundle-generator` to `9.2.1`, fixing an issue with `.d.ts`
generation which led methods prefixed with two underscores to be
incorrectly made private in the generated declaration file.

## 1.5.2

### Patch Changes
Expand All @@ -26,7 +34,7 @@

const output = await transform(input, [
// Acts as if the screen is 960px wide and 1280px tall
inline({ env: { width: 960, height: 1280 } })
inline({ env: { width: 960, height: 1280 } }),
]);
```

Expand Down Expand Up @@ -104,7 +112,7 @@

await transform(markup, {
components: { h1: "h2" },
sanitize: { allowElements: ["h1", "h2", "h3"] }
sanitize: { allowElements: ["h1", "h2", "h3"] },
});
```

Expand All @@ -117,7 +125,7 @@

await transform(markup, [
swap({ h1: "h2" }),
sanitize({ allowElements: ["h1", "h2", "h3"] })
sanitize({ allowElements: ["h1", "h2", "h3"] }),
]);
```

Expand Down Expand Up @@ -184,7 +192,7 @@

await transform(markup, {
components: { h1: "h2" },
sanitize: { allowElements: ["h1", "h2", "h3"] }
sanitize: { allowElements: ["h1", "h2", "h3"] },
});
```

Expand All @@ -197,7 +205,7 @@

await transform(markup, [
swap({ h1: "h2" }),
sanitize({ allowElements: ["h1", "h2", "h3"] })
sanitize({ allowElements: ["h1", "h2", "h3"] }),
]);
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ultrahtml",
"type": "module",
"version": "1.5.2",
"version": "1.5.3",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"repository": {
Expand Down

0 comments on commit 93a1273

Please sign in to comment.