@thi.ng/system 2.1.48 → 2.1.49

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**: 2023-03-14T13:27:20Z
3
+ - **Last updated**: 2023-03-27T19:05:48Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/system",
3
- "version": "2.1.48",
3
+ "version": "2.1.49",
4
4
  "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,17 +37,17 @@
37
37
  "test": "testament test"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.7.4",
41
- "@thi.ng/dgraph": "^2.1.44",
42
- "@thi.ng/logger": "^1.4.11"
40
+ "@thi.ng/api": "^8.7.5",
41
+ "@thi.ng/dgraph": "^2.1.45",
42
+ "@thi.ng/logger": "^1.4.12"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@microsoft/api-extractor": "^7.34.4",
46
- "@thi.ng/testament": "^0.3.13",
47
- "rimraf": "^4.4.0",
46
+ "@thi.ng/testament": "^0.3.14",
47
+ "rimraf": "^4.4.1",
48
48
  "tools": "^0.0.1",
49
- "typedoc": "^0.23.26",
50
- "typescript": "^4.9.5"
49
+ "typedoc": "^0.23.28",
50
+ "typescript": "^5.0.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": "1359645f3af8a7d0d43fe7944ea5cd865832f8ee\n"
87
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
88
88
  }
package/system.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Keys } from "@thi.ng/api";
2
2
  import { DGraph } from "@thi.ng/dgraph";
3
- import { ILifecycle, SystemMap, SystemSpecs } from "./api.js";
3
+ import { type ILifecycle, type SystemMap, type SystemSpecs } from "./api.js";
4
4
  export declare const defSystem: <T extends SystemMap<T>>(map: SystemSpecs<T>) => System<T>;
5
5
  export declare class System<T extends SystemMap<T>> implements ILifecycle {
6
6
  components: T;
package/system.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { DGraph } from "@thi.ng/dgraph";
2
- import { LOGGER } from "./api.js";
2
+ import { LOGGER, } from "./api.js";
3
3
  export const defSystem = (map) => new System(map);
4
4
  export class System {
5
5
  constructor(map) {