@thi.ng/system 3.0.0 → 3.0.1
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 +11 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
- [Status](#status)
|
|
20
20
|
- [Installation](#installation)
|
|
21
21
|
- [Dependencies](#dependencies)
|
|
22
|
+
- [Usage examples](#usage-examples)
|
|
22
23
|
- [API](#api)
|
|
23
24
|
- [Example system](#example-system)
|
|
24
25
|
- [System visualization](#system-visualization)
|
|
@@ -70,6 +71,16 @@ Package sizes (brotli'd, pre-treeshake): ESM: 570 bytes
|
|
|
70
71
|
- [@thi.ng/dgraph](https://github.com/thi-ng/umbrella/tree/develop/packages/dgraph)
|
|
71
72
|
- [@thi.ng/logger](https://github.com/thi-ng/umbrella/tree/develop/packages/logger)
|
|
72
73
|
|
|
74
|
+
## Usage examples
|
|
75
|
+
|
|
76
|
+
One project in this repo's
|
|
77
|
+
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
78
|
+
directory is using this package:
|
|
79
|
+
|
|
80
|
+
| Screenshot | Description | Live demo | Source |
|
|
81
|
+
|:--------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------|
|
|
82
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rstream-system-bus.png" width="240"/> | Declarative component-based system with central rstream-based pubsub event bus | [Demo](https://demo.thi.ng/umbrella/rstream-system-bus/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-system-bus) |
|
|
83
|
+
|
|
73
84
|
## API
|
|
74
85
|
|
|
75
86
|
[Generated API docs](https://docs.thi.ng/umbrella/system/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/system",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@thi.ng/api": "^8.9.22",
|
|
42
|
-
"@thi.ng/dgraph": "^2.1.
|
|
43
|
-
"@thi.ng/logger": "^2.1.
|
|
42
|
+
"@thi.ng/dgraph": "^2.1.94",
|
|
43
|
+
"@thi.ng/logger": "^2.1.9"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@microsoft/api-extractor": "^7.39.0",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"thi.ng": {
|
|
85
85
|
"year": 2020
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "ce8202c237a367c4038d41919a8acf75e1122507\n"
|
|
88
88
|
}
|