@thi.ng/system 2.1.30 → 2.1.32
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 +5 -5
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
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.
|
|
@@ -44,9 +44,9 @@ and/or version bumps of transitive dependencies.
|
|
|
44
44
|
|
|
45
45
|
#### ♻️ Refactoring
|
|
46
46
|
|
|
47
|
-
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
48
47
|
- update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
|
|
49
48
|
- add .js suffix for all relative imports
|
|
49
|
+
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
50
50
|
|
|
51
51
|
# [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/system@2.0.0) (2021-10-12)
|
|
52
52
|
|
|
@@ -67,15 +67,15 @@ and/or version bumps of transitive dependencies.
|
|
|
67
67
|
|
|
68
68
|
#### ♻️ Refactoring
|
|
69
69
|
|
|
70
|
+
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
71
|
+
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
72
|
+
- update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
|
|
70
73
|
- update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
|
|
71
74
|
- largely related to recent updates/restructuring of these packages:
|
|
72
75
|
- api
|
|
73
76
|
- defmulti
|
|
74
77
|
- errors
|
|
75
78
|
- logger
|
|
76
|
-
- update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
|
|
77
|
-
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
78
|
-
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
79
79
|
|
|
80
80
|
## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/system@0.3.0) (2021-03-30)
|
|
81
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/system",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.32",
|
|
4
4
|
"description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.
|
|
38
|
-
"@thi.ng/dgraph": "^2.1.
|
|
39
|
-
"@thi.ng/logger": "^1.4.
|
|
37
|
+
"@thi.ng/api": "^8.5.0",
|
|
38
|
+
"@thi.ng/dgraph": "^2.1.29",
|
|
39
|
+
"@thi.ng/logger": "^1.4.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@microsoft/api-extractor": "^7.33.5",
|
|
43
|
-
"@thi.ng/testament": "^0.3.
|
|
43
|
+
"@thi.ng/testament": "^0.3.5",
|
|
44
44
|
"rimraf": "^3.0.2",
|
|
45
45
|
"tools": "^0.0.1",
|
|
46
|
-
"typedoc": "^0.23.
|
|
46
|
+
"typedoc": "^0.23.20",
|
|
47
47
|
"typescript": "^4.8.4"
|
|
48
48
|
},
|
|
49
49
|
"keywords": [
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"node": ">=12.7"
|
|
65
65
|
},
|
|
66
66
|
"files": [
|
|
67
|
-
"
|
|
68
|
-
"
|
|
67
|
+
"./*.js",
|
|
68
|
+
"./*.d.ts"
|
|
69
69
|
],
|
|
70
70
|
"exports": {
|
|
71
71
|
".": {
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"thi.ng": {
|
|
82
82
|
"year": 2020
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "75ec32ff7f1b7b5e72e7a04ace24732cd5d6c774\n"
|
|
85
85
|
}
|