@thi.ng/system 3.1.13 → 3.1.15

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-06-21T19:34:38Z
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
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 192 standalone projects, maintained as part
10
+ > This is one of 193 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
  >
@@ -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.15",
4
4
  "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -10,7 +10,7 @@
10
10
  "type": "git",
11
11
  "url": "https://github.com/thi-ng/umbrella.git"
12
12
  },
13
- "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/system#readme",
13
+ "homepage": "https://thi.ng/system",
14
14
  "funding": [
15
15
  {
16
16
  "type": "github",
@@ -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.3",
43
+ "@thi.ng/dgraph": "^2.1.119",
44
+ "@thi.ng/logger": "^3.0.13"
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.47.0",
48
+ "esbuild": "^0.21.5",
49
+ "typedoc": "^0.25.13",
50
+ "typescript": "^5.5.2"
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": "154c95cf9d6bab32174498ec3b5b5d87e42be7f9\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];