@thi.ng/tensors 0.6.0 → 0.6.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-06-05T12:59:44Z
3
+ - **Last updated**: 2025-06-09T17:24:08Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 208 standalone projects, maintained as part
10
+ > This is one of 209 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -218,7 +218,7 @@ For Node.js REPL:
218
218
  const ten = await import("@thi.ng/tensors");
219
219
  ```
220
220
 
221
- Package sizes (brotli'd, pre-treeshake): ESM: 9.40 KB
221
+ Package sizes (brotli'd, pre-treeshake): ESM: 9.48 KB
222
222
 
223
223
  ## Dependencies
224
224
 
package/normalize.d.ts CHANGED
@@ -7,5 +7,5 @@ import type { ITensor } from "./api.js";
7
7
  * @param a
8
8
  * @param n
9
9
  */
10
- export declare const normalize: (out: ITensor | null, a: ITensor, n?: number) => ITensor<number> | import("./tensor.js").Tensor1<any>;
10
+ export declare const normalize: (out: ITensor | null, a: ITensor, n?: number) => import("./tensor.js").Tensor1<any> | ITensor<number>;
11
11
  //# sourceMappingURL=normalize.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/tensors",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,15 +39,15 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.28",
43
- "@thi.ng/arrays": "^2.11.1",
44
- "@thi.ng/checks": "^3.7.8",
45
- "@thi.ng/equiv": "^2.1.84",
46
- "@thi.ng/errors": "^2.5.34",
47
- "@thi.ng/math": "^5.11.28",
48
- "@thi.ng/random": "^4.1.19",
49
- "@thi.ng/strings": "^3.9.13",
50
- "@thi.ng/vectors": "^8.2.1"
42
+ "@thi.ng/api": "^8.11.29",
43
+ "@thi.ng/arrays": "^2.12.0",
44
+ "@thi.ng/checks": "^3.7.9",
45
+ "@thi.ng/equiv": "^2.1.85",
46
+ "@thi.ng/errors": "^2.5.35",
47
+ "@thi.ng/math": "^5.11.29",
48
+ "@thi.ng/random": "^4.1.20",
49
+ "@thi.ng/strings": "^3.9.14",
50
+ "@thi.ng/vectors": "^8.3.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "esbuild": "^0.25.5",
@@ -325,5 +325,5 @@
325
325
  "status": "alpha",
326
326
  "year": 2018
327
327
  },
328
- "gitHead": "5a1224bbd501c0dad203fa231749f21740350db7\n"
328
+ "gitHead": "14e994e531d32053e948768998324d443436a542\n"
329
329
  }