@thi.ng/transducers 8.8.8 → 8.8.10

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**: 2023-11-04T22:20:11Z
3
+ - **Last updated**: 2023-11-09T10:28:19Z
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.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [8.8.9](https://github.com/thi-ng/umbrella/tree/@thi.ng/transducers@8.8.9) (2023-11-09)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update all tests (packages T-Z) ([020ef6c](https://github.com/thi-ng/umbrella/commit/020ef6c))
17
+
12
18
  ### [8.8.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/transducers@8.8.7) (2023-10-30)
13
19
 
14
20
  #### 🩹 Bug fixes
package/README.md CHANGED
@@ -175,7 +175,7 @@ For Node.js REPL:
175
175
  const transducers = await import("@thi.ng/transducers");
176
176
  ```
177
177
 
178
- Package sizes (brotli'd, pre-treeshake): ESM: 8.78 KB
178
+ Package sizes (brotli'd, pre-treeshake): ESM: 8.89 KB
179
179
 
180
180
  ## Dependencies
181
181
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/transducers",
3
- "version": "8.8.8",
3
+ "version": "8.8.10",
4
4
  "description": "Lightweight transducer implementations for ES6 / TypeScript",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -32,27 +32,26 @@
32
32
  "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc internal",
33
33
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
34
34
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
35
- "doc:readme": "yarn doc:stats && tools:readme",
36
- "doc:stats": "tools:module-stats",
35
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
36
  "pub": "yarn npm publish --access public",
38
- "test": "testament test"
37
+ "test": "bun test"
39
38
  },
40
39
  "dependencies": {
41
- "@thi.ng/api": "^8.9.6",
42
- "@thi.ng/arrays": "^2.7.2",
43
- "@thi.ng/checks": "^3.4.6",
44
- "@thi.ng/compare": "^2.2.2",
45
- "@thi.ng/compose": "^2.1.45",
46
- "@thi.ng/errors": "^2.4.0",
47
- "@thi.ng/math": "^5.7.1",
48
- "@thi.ng/random": "^3.6.12"
40
+ "@thi.ng/api": "^8.9.8",
41
+ "@thi.ng/arrays": "^2.7.4",
42
+ "@thi.ng/checks": "^3.4.8",
43
+ "@thi.ng/compare": "^2.2.4",
44
+ "@thi.ng/compose": "^2.1.47",
45
+ "@thi.ng/errors": "^2.4.2",
46
+ "@thi.ng/math": "^5.7.3",
47
+ "@thi.ng/random": "^3.6.14"
49
48
  },
50
49
  "devDependencies": {
51
- "@microsoft/api-extractor": "^7.38.0",
52
- "@thi.ng/testament": "^0.3.24",
50
+ "@microsoft/api-extractor": "^7.38.2",
51
+ "@thi.ng/testament": "^0.4.1",
53
52
  "rimraf": "^5.0.5",
54
53
  "tools": "^0.0.1",
55
- "typedoc": "^0.25.2",
54
+ "typedoc": "^0.25.3",
56
55
  "typescript": "^5.2.2"
57
56
  },
58
57
  "keywords": [
@@ -588,5 +587,5 @@
588
587
  ],
589
588
  "year": 2016
590
589
  },
591
- "gitHead": "336bd1bf95825b3c318a3ab49c54451c94aaa883\n"
590
+ "gitHead": "669a3151e4302480244fe3e60eff5e732ea5b7a7\n"
592
591
  }
package/range.js CHANGED
@@ -8,6 +8,9 @@ export function range(from, to, step) {
8
8
  * {@link reduce}.
9
9
  */
10
10
  export class Range {
11
+ from;
12
+ to;
13
+ step;
11
14
  constructor(from, to, step) {
12
15
  if (from === undefined) {
13
16
  from = 0;
package/reduced.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export class Reduced {
2
+ value;
2
3
  constructor(val) {
3
4
  this.value = val;
4
5
  }