@thi.ng/system 3.1.13 → 3.1.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-04-26T13:32:20Z
3
+ - **Last updated**: 2024-05-08T18:24:31Z
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
@@ -68,7 +68,7 @@ For Node.js REPL:
68
68
  const sys = await import("@thi.ng/system");
69
69
  ```
70
70
 
71
- Package sizes (brotli'd, pre-treeshake): ESM: 581 bytes
71
+ Package sizes (brotli'd, pre-treeshake): ESM: 579 bytes
72
72
 
73
73
  ## Dependencies
74
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/system",
3
- "version": "3.1.13",
3
+ "version": "3.1.14",
4
4
  "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,15 +39,15 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.1",
43
- "@thi.ng/dgraph": "^2.1.117",
44
- "@thi.ng/logger": "^3.0.11"
42
+ "@thi.ng/api": "^8.11.2",
43
+ "@thi.ng/dgraph": "^2.1.118",
44
+ "@thi.ng/logger": "^3.0.12"
45
45
  },
46
46
  "devDependencies": {
47
- "@microsoft/api-extractor": "^7.43.0",
48
- "esbuild": "^0.20.2",
49
- "typedoc": "^0.25.12",
50
- "typescript": "^5.4.3"
47
+ "@microsoft/api-extractor": "^7.43.2",
48
+ "esbuild": "^0.21.1",
49
+ "typedoc": "^0.25.13",
50
+ "typescript": "^5.4.5"
51
51
  },
52
52
  "keywords": [
53
53
  "clojure",
@@ -84,5 +84,5 @@
84
84
  "thi.ng": {
85
85
  "year": 2020
86
86
  },
87
- "gitHead": "0bec55821066c18eb977a7eabd42c0bb2b096d98\n"
87
+ "gitHead": "df34b4a9e650cc7323575356de207d78933bdcf3\n"
88
88
  }
package/system.js CHANGED
@@ -39,8 +39,7 @@ class System {
39
39
  * **not** be intercepted.
40
40
  */
41
41
  async start() {
42
- if (!this.graph)
43
- await this.init();
42
+ if (!this.graph) await this.init();
44
43
  const topo = this.topology;
45
44
  for (let i = 0; i < topo.length; i++) {
46
45
  const id = topo[i];