@thi.ng/interceptors 3.1.15 → 3.1.16
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 +5 -5
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/interceptors)
|
|
6
6
|

|
|
@@ -15,8 +15,8 @@ This project is part of the
|
|
|
15
15
|
- [Event Handlers](#event-handlers)
|
|
16
16
|
- [Events vs Effects:](#events-vs-effects)
|
|
17
17
|
- [Great, but why?](#great-but-why)
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
- [Status](#status)
|
|
19
|
+
- [Related packages](#related-packages)
|
|
20
20
|
- [Installation](#installation)
|
|
21
21
|
- [Dependencies](#dependencies)
|
|
22
22
|
- [Usage examples](#usage-examples)
|
|
@@ -115,13 +115,13 @@ commented source code and examples for now:
|
|
|
115
115
|
|
|
116
116
|
- [/src/event-bus.ts](https://github.com/thi-ng/umbrella/tree/develop/packages/interceptors/src/event-bus.ts)
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
## Status
|
|
119
119
|
|
|
120
120
|
**DEPRECATED** - no further development planned
|
|
121
121
|
|
|
122
122
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Binterceptors%5D+in%3Atitle)
|
|
123
123
|
|
|
124
|
-
|
|
124
|
+
## Related packages
|
|
125
125
|
|
|
126
126
|
- [@thi.ng/atom](https://github.com/thi-ng/umbrella/tree/develop/packages/atom) - Mutable wrappers for nested immutable values with optional undo/redo history and transaction support
|
|
127
127
|
- [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom) - Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/interceptors",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.16",
|
|
4
4
|
"description": "Interceptor based event bus, side effect & immutable state handling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/atom": "^5.1.
|
|
39
|
-
"@thi.ng/checks": "^3.2.
|
|
40
|
-
"@thi.ng/errors": "^2.
|
|
41
|
-
"@thi.ng/logger": "^1.
|
|
42
|
-
"@thi.ng/paths": "^5.1.
|
|
37
|
+
"@thi.ng/api": "^8.4.2",
|
|
38
|
+
"@thi.ng/atom": "^5.1.15",
|
|
39
|
+
"@thi.ng/checks": "^3.2.5",
|
|
40
|
+
"@thi.ng/errors": "^2.2.0",
|
|
41
|
+
"@thi.ng/logger": "^1.3.0",
|
|
42
|
+
"@thi.ng/paths": "^5.1.15"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@microsoft/api-extractor": "^7.
|
|
46
|
-
"@thi.ng/testament": "^0.
|
|
45
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
46
|
+
"@thi.ng/testament": "^0.3.0",
|
|
47
47
|
"rimraf": "^3.0.2",
|
|
48
48
|
"tools": "^0.0.1",
|
|
49
49
|
"typedoc": "^0.22.17",
|
|
50
|
-
"typescript": "^4.
|
|
50
|
+
"typescript": "^4.8.3"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"async",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"status": "deprecated",
|
|
92
92
|
"year": 2016
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
|
|
95
95
|
}
|