@thi.ng/rstream 8.3.1 → 8.3.3
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 +7 -1
- package/README.md +2 -1
- package/internal/remove.d.ts.map +1 -0
- package/logger.d.ts +1 -3
- package/logger.js +3 -5
- package/package.json +5 -5
- package/subscription.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-02-
|
|
3
|
+
- **Last updated**: 2024-02-16T20:01:44Z
|
|
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.3.3](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream@8.3.3) (2024-02-16)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- update LOGGER handling ([e3e18ab](https://github.com/thi-ng/umbrella/commit/e3e18ab))
|
|
17
|
+
|
|
12
18
|
## [8.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream@8.3.0) (2024-02-06)
|
|
13
19
|
|
|
14
20
|
#### 🚀 Features
|
package/README.md
CHANGED
|
@@ -213,7 +213,7 @@ For Node.js REPL:
|
|
|
213
213
|
const rstream = await import("@thi.ng/rstream");
|
|
214
214
|
```
|
|
215
215
|
|
|
216
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 6.
|
|
216
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 6.16 KB
|
|
217
217
|
|
|
218
218
|
## Dependencies
|
|
219
219
|
|
|
@@ -258,6 +258,7 @@ directory are using this package:
|
|
|
258
258
|
| <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) |
|
|
259
259
|
| <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) |
|
|
260
260
|
| <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) |
|
|
261
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/ramp-scroll-anim.png" width="240"/> | Scroll-based, reactive, multi-param CSS animation basics | [Demo](https://demo.thi.ng/umbrella/ramp-scroll-anim/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ramp-scroll-anim) |
|
|
261
262
|
| | 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) |
|
|
262
263
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-canvas-basics.jpg" width="240"/> | Minimal rdom-canvas animation | [Demo](https://demo.thi.ng/umbrella/rdom-canvas-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-canvas-basics) |
|
|
263
264
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-delayed-update.jpg" width="240"/> | Dynamically loaded images w/ preloader state | [Demo](https://demo.thi.ng/umbrella/rdom-delayed-update/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-delayed-update) |
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove.d.ts","sourceRoot":"","sources":["../src/internal/remove.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc;iBACL,MAAM,GAAG,OAAO;QAChC,SAAS,MAAM,CAAC,YAOrB,CAAC"}
|
package/logger.d.ts
CHANGED
package/logger.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
const setLogger = (logger) => LOGGER = logger;
|
|
1
|
+
import { ROOT } from "@thi.ng/logger/root";
|
|
2
|
+
const LOGGER = ROOT.childLogger("rstream");
|
|
4
3
|
export {
|
|
5
|
-
LOGGER
|
|
6
|
-
setLogger
|
|
4
|
+
LOGGER
|
|
7
5
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.3",
|
|
4
4
|
"description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@thi.ng/api": "^8.9.23",
|
|
43
43
|
"@thi.ng/arrays": "^2.7.20",
|
|
44
|
-
"@thi.ng/associative": "^6.3.
|
|
44
|
+
"@thi.ng/associative": "^6.3.38",
|
|
45
45
|
"@thi.ng/atom": "^5.2.30",
|
|
46
46
|
"@thi.ng/checks": "^3.4.23",
|
|
47
47
|
"@thi.ng/errors": "^2.4.16",
|
|
48
|
-
"@thi.ng/logger": "^
|
|
49
|
-
"@thi.ng/transducers": "^8.9.
|
|
48
|
+
"@thi.ng/logger": "^3.0.0",
|
|
49
|
+
"@thi.ng/transducers": "^8.9.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@microsoft/api-extractor": "^7.40.1",
|
|
@@ -214,5 +214,5 @@
|
|
|
214
214
|
],
|
|
215
215
|
"year": 2017
|
|
216
216
|
},
|
|
217
|
-
"gitHead": "
|
|
217
|
+
"gitHead": "25ee18f7db6d03f0b76787267ab071d16df94888\n"
|
|
218
218
|
}
|
package/subscription.js
CHANGED
|
@@ -146,7 +146,7 @@ class Subscription {
|
|
|
146
146
|
return hasErrorHandler && sub.error(e) || this.unhandledError(e);
|
|
147
147
|
}
|
|
148
148
|
unhandledError(e) {
|
|
149
|
-
(LOGGER !== NULL_LOGGER ? LOGGER : console).warn(
|
|
149
|
+
(LOGGER.parent !== NULL_LOGGER ? LOGGER : console).warn(
|
|
150
150
|
this.id,
|
|
151
151
|
"unhandled error:",
|
|
152
152
|
e
|