@hyperfrontend/immutable-api-utils 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/README.md +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.1](https://github.com/AndrewRedican/hyperfrontend/compare/lib-immutable-api-utils@0.1.0...lib-immutable-api-utils@0.1.1) (2026-03-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **lib-immutable-api-utils:** handle built-in binding and jsdocs for fn overloads correctly ([da9ff90](https://github.com/AndrewRedican/hyperfrontend/commit/da9ff90ab29bfbdbdc03bb39585b09ca04772a57))
|
|
11
|
+
* **lib-immutable-api-utils:** use correct overload constructor for unit 8 array ([06bb617](https://github.com/AndrewRedican/hyperfrontend/commit/06bb6172a5af486b5500af1207365753fe221680))
|
|
12
|
+
|
|
5
13
|
## [0.1.0](https://github.com/AndrewRedican/hyperfrontend/compare/lib-immutable-api-utils@0.0.2...lib-immutable-api-utils@0.1.0) (2026-03-02)
|
|
6
14
|
|
|
7
15
|
|
|
@@ -16,7 +24,9 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
|
|
|
16
24
|
### Bug Fixes
|
|
17
25
|
|
|
18
26
|
* **lib-immutable-api-utils:** correct package exports ([f63960e](https://github.com/AndrewRedican/hyperfrontend/commit/f63960eb0302512ac420520db1610469377c0f58))
|
|
27
|
+
* **lib-immutable-api-utils:** handle built-in binding and jsdocs for fn overloads correctly ([da9ff90](https://github.com/AndrewRedican/hyperfrontend/commit/da9ff90ab29bfbdbdc03bb39585b09ca04772a57))
|
|
19
28
|
* **lib-immutable-api-utils:** restore index.ts file required entrypoint for iife and umd build ([de75fb5](https://github.com/AndrewRedican/hyperfrontend/commit/de75fb5f4f45eed3544a3039b45aedf51a4489bb))
|
|
29
|
+
* **lib-immutable-api-utils:** use correct overload constructor for unit 8 array ([06bb617](https://github.com/AndrewRedican/hyperfrontend/commit/06bb6172a5af486b5500af1207365753fe221680))
|
|
20
30
|
|
|
21
31
|
## [0.0.2](https://github.com/AndrewRedican/hyperfrontend/compare/lib-immutable-api-utils@0.0.1...lib-immutable-api-utils@0.0.2) (2026-02-26)
|
|
22
32
|
|
package/README.md
CHANGED
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
<a href="https://www.npmjs.com/package/@hyperfrontend/immutable-api-utils">
|
|
11
11
|
<img src="https://img.shields.io/npm/v/@hyperfrontend/immutable-api-utils?style=flat-square" alt="npm version">
|
|
12
12
|
</a>
|
|
13
|
+
<a href="https://bundlephobia.com/package/@hyperfrontend/immutable-api-utils">
|
|
14
|
+
<img src="https://img.shields.io/bundlephobia/min/%40hyperfrontend%2Fimmutable-api-utils?style=flat-square" alt="npm bundle size">
|
|
15
|
+
</a>
|
|
13
16
|
</p>
|
|
14
17
|
<p align="center">
|
|
15
18
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
@@ -217,8 +220,6 @@ setTimeout(() => log('Delayed message'), 1000)
|
|
|
217
220
|
| IIFE | `bundle/index.iife.min.js` | ❌ |
|
|
218
221
|
| UMD | `bundle/index.umd.min.js` | ❌ |
|
|
219
222
|
|
|
220
|
-
**Bundle size:** < 1 KB (minified, core utilities only)
|
|
221
|
-
|
|
222
223
|
Secondary entrypoints (`built-in-copy/*`) are individually tree-shakeable—import only the built-ins you need.
|
|
223
224
|
|
|
224
225
|
### CDN Usage
|