diff --git a/.changeset/loud-panthers-look.md b/.changeset/loud-panthers-look.md deleted file mode 100644 index ec52657..0000000 --- a/.changeset/loud-panthers-look.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"ultrahtml": patch ---- - -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. diff --git a/CHANGELOG.md b/CHANGELOG.md index c201333..f9872a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 } }), ]); ``` @@ -104,7 +112,7 @@ await transform(markup, { components: { h1: "h2" }, - sanitize: { allowElements: ["h1", "h2", "h3"] } + sanitize: { allowElements: ["h1", "h2", "h3"] }, }); ``` @@ -117,7 +125,7 @@ await transform(markup, [ swap({ h1: "h2" }), - sanitize({ allowElements: ["h1", "h2", "h3"] }) + sanitize({ allowElements: ["h1", "h2", "h3"] }), ]); ``` @@ -184,7 +192,7 @@ await transform(markup, { components: { h1: "h2" }, - sanitize: { allowElements: ["h1", "h2", "h3"] } + sanitize: { allowElements: ["h1", "h2", "h3"] }, }); ``` @@ -197,7 +205,7 @@ await transform(markup, [ swap({ h1: "h2" }), - sanitize({ allowElements: ["h1", "h2", "h3"] }) + sanitize({ allowElements: ["h1", "h2", "h3"] }), ]); ``` diff --git a/package.json b/package.json index 204d8e6..cc75bd5 100644 --- a/package.json +++ b/package.json @@ -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": {