@thi.ng/rstream 8.2.9 → 8.2.11

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-09T10:28:19Z
3
+ - **Last updated**: 2023-11-24T09:35:46Z
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
@@ -239,6 +239,7 @@ directory are using this package:
239
239
  | | Basic rstream-gestures multi-touch demo | [Demo](https://demo.thi.ng/umbrella/multitouch/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/multitouch) |
240
240
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/parse-playground.png" width="240"/> | Parser grammar livecoding editor/playground & codegen | [Demo](https://demo.thi.ng/umbrella/parse-playground/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/parse-playground) |
241
241
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-sorting.png" width="240"/> | Interactive pixel sorting tool using thi.ng/color & thi.ng/pixel | [Demo](https://demo.thi.ng/umbrella/pixel-sorting/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-sorting) |
242
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-waveform.jpg" width="240"/> | RGB waveform image analysis | [Demo](https://demo.thi.ng/umbrella/pixel-waveform/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-waveform) |
242
243
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pointfree-geom.jpg" width="240"/> | Live coding playground for 2D geometry generation using @thi.ng/pointfree-lang | [Demo](https://demo.thi.ng/umbrella/pointfree-geom/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-geom) |
243
244
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/procedural-text.jpg" width="240"/> | Procedural stochastic text generation via custom DSL, parse grammar & AST transformation | [Demo](https://demo.thi.ng/umbrella/procedural-text/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/procedural-text) |
244
245
  | | Demonstates various rdom usage patterns | [Demo](https://demo.thi.ng/umbrella/rdom-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-basics) |
package/nodejs.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import type { Readable } from "stream";
2
3
  import { type Stream } from "./stream.js";
3
4
  import type { Subscription } from "./subscription.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream",
3
- "version": "8.2.9",
3
+ "version": "8.2.11",
4
4
  "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,22 +37,22 @@
37
37
  "test": "bun test"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.9.8",
41
- "@thi.ng/arrays": "^2.7.4",
42
- "@thi.ng/associative": "^6.3.19",
43
- "@thi.ng/atom": "^5.2.14",
44
- "@thi.ng/checks": "^3.4.8",
45
- "@thi.ng/errors": "^2.4.2",
46
- "@thi.ng/logger": "^1.4.24",
47
- "@thi.ng/transducers": "^8.8.10"
40
+ "@thi.ng/api": "^8.9.9",
41
+ "@thi.ng/arrays": "^2.7.5",
42
+ "@thi.ng/associative": "^6.3.21",
43
+ "@thi.ng/atom": "^5.2.15",
44
+ "@thi.ng/checks": "^3.4.9",
45
+ "@thi.ng/errors": "^2.4.3",
46
+ "@thi.ng/logger": "^2.0.0",
47
+ "@thi.ng/transducers": "^8.8.12"
48
48
  },
49
49
  "devDependencies": {
50
- "@microsoft/api-extractor": "^7.38.2",
51
- "@thi.ng/testament": "^0.4.1",
50
+ "@microsoft/api-extractor": "^7.38.3",
51
+ "@thi.ng/testament": "^0.4.2",
52
52
  "rimraf": "^5.0.5",
53
53
  "tools": "^0.0.1",
54
54
  "typedoc": "^0.25.3",
55
- "typescript": "^5.2.2"
55
+ "typescript": "^5.3.2"
56
56
  },
57
57
  "keywords": [
58
58
  "async",
@@ -213,5 +213,5 @@
213
213
  ],
214
214
  "year": 2017
215
215
  },
216
- "gitHead": "669a3151e4302480244fe3e60eff5e732ea5b7a7\n"
216
+ "gitHead": "f6de41f4991704fdbbb2899bb430ed4f4f6efab0\n"
217
217
  }