@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.
- package/CHANGELOG.md +1 -1
- package/README.md +8 -8
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
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
|
-
|
|
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.
|
|
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.
|
|
43
|
-
"@thi.ng/atom": "^5.2.
|
|
44
|
-
"@thi.ng/checks": "^3.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/logger": "^3.0.
|
|
47
|
-
"@thi.ng/paths": "^5.1.
|
|
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.
|
|
51
|
-
"esbuild": "^0.20.
|
|
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.
|
|
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": "
|
|
99
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
99
100
|
}
|