@notchjs/core 0.8.0 → 0.8.2

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.
@@ -132,7 +132,7 @@ class Application {
132
132
  });
133
133
  }
134
134
  async dispose() {
135
- this.adapter && (await this.adapter.close());
135
+ await this.adapter?.close();
136
136
  }
137
137
  formatAddress(address) {
138
138
  if ((0, notions_1.isString)(address)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notchjs/core",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "A dependency injection based web framework (Node.js)",
5
5
  "license": "MIT",
6
6
  "author": "Augustus Kamau",
@@ -18,13 +18,14 @@
18
18
  "test": "jest --detectOpenHandles"
19
19
  },
20
20
  "dependencies": {
21
- "@notchjs/util": "^0.8.0",
21
+ "@hemjs/notions": "1.0.9",
22
+ "@notchjs/util": "^0.8.1",
22
23
  "iterare": "1.2.1",
23
- "tslib": "2.6.3"
24
+ "tslib": "2.7.0"
24
25
  },
25
26
  "devDependencies": {
26
- "@notchjs/express": "^0.8.0",
27
- "@notchjs/http": "^0.8.0",
27
+ "@notchjs/express": "^0.8.2",
28
+ "@notchjs/http": "^0.8.1",
28
29
  "@notchjs/types": "^0.8.0"
29
30
  },
30
31
  "homepage": "https://github.com/notchjs/notch",
@@ -41,5 +42,5 @@
41
42
  "publishConfig": {
42
43
  "access": "public"
43
44
  },
44
- "gitHead": "53593e751129b738319ae61a74d585bae9ff7cad"
45
+ "gitHead": "cf9b01c15fb9478c33bacc0f5c5b60f92f83549b"
45
46
  }