@thi.ng/csp 2.1.100 → 2.1.101

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-22T11:59:16Z
3
+ - **Last updated**: 2024-02-25T14:07:53Z
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/channel.d.ts CHANGED
@@ -81,6 +81,8 @@ export declare class Channel<T> implements IReadWriteableChannel<T> {
81
81
  *
82
82
  * @example
83
83
  * ```ts
84
+ * import { Channel } from "@thi.ng/csp";
85
+ *
84
86
  * Channel.mergeTuples([
85
87
  * Channel.from([1, 2, 3]),
86
88
  * Channel.from([10, 20, 30]),
package/channel.js CHANGED
@@ -164,6 +164,8 @@ class Channel {
164
164
  *
165
165
  * @example
166
166
  * ```ts
167
+ * import { Channel } from "@thi.ng/csp";
168
+ *
167
169
  * Channel.mergeTuples([
168
170
  * Channel.from([1, 2, 3]),
169
171
  * Channel.from([10, 20, 30]),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/csp",
3
- "version": "2.1.100",
3
+ "version": "2.1.101",
4
4
  "description": "ES6 promise based CSP primitives & operations",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,12 +39,12 @@
39
39
  "testnode": "tsc -p test && node build/test/node.js"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.9.25",
43
- "@thi.ng/arrays": "^2.8.2",
42
+ "@thi.ng/api": "^8.9.26",
43
+ "@thi.ng/arrays": "^2.8.3",
44
44
  "@thi.ng/checks": "^3.5.0",
45
- "@thi.ng/dcons": "^3.2.95",
45
+ "@thi.ng/dcons": "^3.2.96",
46
46
  "@thi.ng/errors": "^2.4.18",
47
- "@thi.ng/transducers": "^8.9.6"
47
+ "@thi.ng/transducers": "^8.9.7"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@microsoft/api-extractor": "^7.40.1",
@@ -103,5 +103,5 @@
103
103
  "status": "deprecated",
104
104
  "year": 2016
105
105
  },
106
- "gitHead": "16f2b92b5410bd35dcde6c2971c8e62783ebc472\n"
106
+ "gitHead": "6e20f80dd9df1c8055ffa3c1e4d6f7598add0c0b\n"
107
107
  }