@visulima/bytes 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## @visulima/bytes [1.0.1](https://github.com/visulima/visulima/compare/@visulima/bytes@1.0.0...@visulima/bytes@1.0.1) (2025-09-10)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **bytes:** restore require exports in package.json and add validation to packem.config.ts ([762b1f5](https://github.com/visulima/visulima/commit/762b1f5789398617032ef23f06763c4fd9f41eda))
6
+
1
7
  ## @visulima/bytes 1.0.0 (2025-06-03)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/bytes",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Utility functions to make dealing with Uint8Arrays easier",
5
5
  "keywords": [
6
6
  "visulima",
@@ -34,13 +34,13 @@
34
34
  "type": "module",
35
35
  "exports": {
36
36
  ".": {
37
- "require": {
38
- "types": "./dist/index.d.cts",
39
- "default": "./dist/index.cjs"
40
- },
41
37
  "import": {
42
38
  "types": "./dist/index.d.mts",
43
39
  "default": "./dist/index.mjs"
40
+ },
41
+ "require": {
42
+ "types": "./dist/index.d.cts",
43
+ "default": "./dist/index.cjs"
44
44
  }
45
45
  },
46
46
  "./package.json": "./package.json"