venerate 0.0.5 → 0.0.6
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/README.md +13 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,20 +12,6 @@
|
|
|
12
12
|
src="https://img.shields.io/badge/dependencies-0-0?style=for-the-badge"
|
|
13
13
|
>
|
|
14
14
|
</a>
|
|
15
|
-
<!-- tonnage:default:start -->
|
|
16
|
-
|
|
17
|
-
## Bundle size
|
|
18
|
-
|
|
19
|
-
Public-module rows retain complete runtime export surfaces. Recipe rows bundle their reviewable entry files and tree-shake unused exports. Both report exact minified and level-9 gzip JavaScript byte counts; declarations, source maps, CSS, and other assets are excluded. Peer dependencies stay external, and shared modules are counted once per bundle.
|
|
20
|
-
|
|
21
|
-
### Public modules (whole export surface)
|
|
22
|
-
|
|
23
|
-
| Import | Minified JS | Gzip JS |
|
|
24
|
-
| --------------------- | ----------: | ------: |
|
|
25
|
-
| <code>venerate</code> | 1,318 B | 572 B |
|
|
26
|
-
|
|
27
|
-
<!-- tonnage:default:end -->
|
|
28
|
-
|
|
29
15
|
```sh
|
|
30
16
|
npm i venerate
|
|
31
17
|
```
|
|
@@ -47,3 +33,16 @@ const c = (function* () {
|
|
|
47
33
|
|
|
48
34
|
const union = [...V.union(a, b, c)] // [1, 2, 3, 4, 5]
|
|
49
35
|
```
|
|
36
|
+
|
|
37
|
+
<!-- tonnage:default:start -->
|
|
38
|
+
|
|
39
|
+
## Bundle size
|
|
40
|
+
|
|
41
|
+
Package export sizes include complete runtime export surfaces.
|
|
42
|
+
Sizes are exact minified and level-9 gzip JavaScript byte counts. Declarations, source maps, CSS, and other assets are excluded. Peer dependencies stay external, and shared modules are counted once per bundle.
|
|
43
|
+
|
|
44
|
+
| Import | Minified JS | Gzip JS |
|
|
45
|
+
| --------------------- | ----------: | ------: |
|
|
46
|
+
| <code>venerate</code> | 1,318 B | 572 B |
|
|
47
|
+
|
|
48
|
+
<!-- tonnage:default:end -->
|