@visulima/bytes 3.0.0-alpha.7 → 3.0.0-alpha.8

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 +16 -0
  2. package/package.json +1 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## @visulima/bytes [3.0.0-alpha.8](https://github.com/visulima/visulima/compare/@visulima/bytes@3.0.0-alpha.7...@visulima/bytes@3.0.0-alpha.8) (2026-04-08)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **bytes:** add eslint-disable for runtime Buffer availability checks ([c579fd4](https://github.com/visulima/visulima/commit/c579fd4be50eaa152e82ab54a698d47dda9997c6))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * **bytes:** add tsconfig.eslint.json for type-aware linting ([b000842](https://github.com/visulima/visulima/commit/b000842b06c549d9336dbb95cd9dd2ed56749a00))
10
+ * **bytes:** apply auto-fix formatting ([b007819](https://github.com/visulima/visulima/commit/b007819d9e4a4bb08cb802b16a0f6cc330fb1102))
11
+ * **bytes:** apply prettier formatting ([9d2226c](https://github.com/visulima/visulima/commit/9d2226c2b7ec9b4631444f956ff047cfa1b32526))
12
+ * **bytes:** expand inline if-return to block syntax ([4388518](https://github.com/visulima/visulima/commit/43885187afac28f0de8b56f42c5a601f095bcc3b))
13
+ * **bytes:** expand inline if-return to block syntax ([5b313f2](https://github.com/visulima/visulima/commit/5b313f240f3161893100dcc35858ebd1630d7765))
14
+ * **bytes:** migrate .prettierrc.cjs to prettier.config.js ([ddc08da](https://github.com/visulima/visulima/commit/ddc08da039cb51a296147514d5683b5340051a98))
15
+ * **data-manipulation:** remove empty dependency objects from package.json ([c0e8f76](https://github.com/visulima/visulima/commit/c0e8f7689a2da413f771494f6ecb07babc4b5e06))
16
+
1
17
  ## @visulima/bytes [3.0.0-alpha.7](https://github.com/visulima/visulima/compare/@visulima/bytes@3.0.0-alpha.6...@visulima/bytes@3.0.0-alpha.7) (2026-03-26)
2
18
 
3
19
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/bytes",
3
- "version": "3.0.0-alpha.7",
3
+ "version": "3.0.0-alpha.8",
4
4
  "description": "Utility functions to make dealing with Uint8Arrays easier",
5
5
  "keywords": [
6
6
  "visulima",
@@ -50,9 +50,6 @@
50
50
  "README.md",
51
51
  "CHANGELOG.md"
52
52
  ],
53
- "dependencies": {},
54
- "peerDependencies": {},
55
- "optionalDependencies": {},
56
53
  "engines": {
57
54
  "node": ">=22.13 <=25.x"
58
55
  },