@thi.ng/interceptors 3.2.52 → 3.2.54

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +8 -8
  3. package/package.json +12 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-13T14:04:31Z
3
+ - **Last updated**: 2024-04-08T14:59:29Z
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
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 190 standalone projects, maintained as part
10
+ > This is one of 191 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -141,7 +141,13 @@ commented source code and examples for now:
141
141
  yarn add @thi.ng/interceptors
142
142
  ```
143
143
 
144
- ES module import:
144
+ ESM import:
145
+
146
+ ```ts
147
+ import * as iceps from "@thi.ng/interceptors";
148
+ ```
149
+
150
+ Browser ESM import:
145
151
 
146
152
  ```html
147
153
  <script type="module" src="https://cdn.skypack.dev/@thi.ng/interceptors"></script>
@@ -149,12 +155,6 @@ ES module import:
149
155
 
150
156
  [Skypack documentation](https://docs.skypack.dev/)
151
157
 
152
- For Node.js REPL:
153
-
154
- ```js
155
- const interceptors = await import("@thi.ng/interceptors");
156
- ```
157
-
158
158
  Package sizes (brotli'd, pre-treeshake): ESM: 2.14 KB
159
159
 
160
160
  ## Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/interceptors",
3
- "version": "3.2.52",
3
+ "version": "3.2.54",
4
4
  "description": "Interceptor based event bus, side effect & immutable state handling",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,19 +39,19 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.9.30",
43
- "@thi.ng/atom": "^5.2.40",
44
- "@thi.ng/checks": "^3.5.4",
45
- "@thi.ng/errors": "^2.5.1",
46
- "@thi.ng/logger": "^3.0.6",
47
- "@thi.ng/paths": "^5.1.75"
42
+ "@thi.ng/api": "^8.10.0",
43
+ "@thi.ng/atom": "^5.2.42",
44
+ "@thi.ng/checks": "^3.6.0",
45
+ "@thi.ng/errors": "^2.5.3",
46
+ "@thi.ng/logger": "^3.0.8",
47
+ "@thi.ng/paths": "^5.1.77"
48
48
  },
49
49
  "devDependencies": {
50
- "@microsoft/api-extractor": "^7.42.3",
51
- "esbuild": "^0.20.1",
50
+ "@microsoft/api-extractor": "^7.43.0",
51
+ "esbuild": "^0.20.2",
52
52
  "rimraf": "^5.0.5",
53
53
  "typedoc": "^0.25.12",
54
- "typescript": "^5.4.2"
54
+ "typescript": "^5.4.3"
55
55
  },
56
56
  "keywords": [
57
57
  "async",
@@ -87,6 +87,7 @@
87
87
  }
88
88
  },
89
89
  "thi.ng": {
90
+ "alias": "iceps",
90
91
  "related": [
91
92
  "atom",
92
93
  "hdom",
@@ -95,5 +96,5 @@
95
96
  "status": "completed",
96
97
  "year": 2016
97
98
  },
98
- "gitHead": "4b3d4ab6ce373ca817ad780f679572169a9ed733\n"
99
+ "gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
99
100
  }