@thi.ng/rstream 8.3.5 → 8.3.7

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**: 2024-02-19T16:07:07Z
3
+ - **Last updated**: 2024-02-22T11:59:16Z
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.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream@8.3.6) (2024-02-22)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update all `node:*` imports ([c71a526](https://github.com/thi-ng/umbrella/commit/c71a526))
17
+
12
18
  ### [8.3.3](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream@8.3.3) (2024-02-16)
13
19
 
14
20
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -18,7 +18,7 @@
18
18
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
19
19
 
20
20
  > [!NOTE]
21
- > This is one of 189 standalone projects, maintained as part
21
+ > This is one of 190 standalone projects, maintained as part
22
22
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
23
23
  > and anti-framework.
24
24
  >
package/nodejs.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="node" />
2
- import type { Readable } from "stream";
2
+ import type { Readable } from "node:stream";
3
3
  import { type Stream } from "./stream.js";
4
4
  import type { Subscription } from "./subscription.js";
5
5
  /**
@@ -24,7 +24,7 @@ export declare const fromNodeJS: <T>(stdout: Readable, stderr?: Readable, close?
24
24
  *
25
25
  * @example
26
26
  * ```ts
27
- * import { spawn } from "child_process"
27
+ * import { spawn } from "node:child_process"
28
28
  * import { linesFromNodeJS, trace } from "@thi.ng/rstream";
29
29
  *
30
30
  * const cmd = spawn("ls", ["-la"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream",
3
- "version": "8.3.5",
3
+ "version": "8.3.7",
4
4
  "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,14 +39,14 @@
39
39
  "test": "bun test"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.9.24",
43
- "@thi.ng/arrays": "^2.8.1",
44
- "@thi.ng/associative": "^6.3.40",
45
- "@thi.ng/atom": "^5.2.31",
46
- "@thi.ng/checks": "^3.4.24",
47
- "@thi.ng/errors": "^2.4.17",
48
- "@thi.ng/logger": "^3.0.1",
49
- "@thi.ng/transducers": "^8.9.4"
42
+ "@thi.ng/api": "^8.9.25",
43
+ "@thi.ng/arrays": "^2.8.2",
44
+ "@thi.ng/associative": "^6.3.42",
45
+ "@thi.ng/atom": "^5.2.32",
46
+ "@thi.ng/checks": "^3.5.0",
47
+ "@thi.ng/errors": "^2.4.18",
48
+ "@thi.ng/logger": "^3.0.2",
49
+ "@thi.ng/transducers": "^8.9.6"
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": "2724c87ca41810f2112f9d8c3d6b90dfaeea876b\n"
217
+ "gitHead": "16f2b92b5410bd35dcde6c2971c8e62783ebc472\n"
218
218
  }