@friggframework/core 0.2.9-canary.9a593f4.0 → 0.2.10-canary.2c1b5fd.0

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,3 +1,16 @@
1
+ # v0.2.9 (Wed Dec 21 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Delegate now returns whatever the response is from the receiveNotific… [#80](https://github.com/friggframework/frigg/pull/80) ([@seanspeaks](https://github.com/seanspeaks))
6
+ - Delegate now returns whatever the response is from the receiveNotification function, if anything ([@seanspeaks](https://github.com/seanspeaks))
7
+
8
+ #### Authors: 1
9
+
10
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
11
+
12
+ ---
13
+
1
14
  # v0.2.8 (Tue Dec 06 2022)
2
15
 
3
16
  #### 🐛 Bug Fix
package/Delegate.js CHANGED
@@ -13,7 +13,7 @@ class Delegate {
13
13
  );
14
14
  }
15
15
  if (this.delegate) {
16
- await this.delegate.receiveNotification(
16
+ return this.delegate.receiveNotification(
17
17
  this,
18
18
  delegateString,
19
19
  object
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@friggframework/core",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "0.2.9-canary.9a593f4.0",
4
+ "version": "0.2.10-canary.2c1b5fd.0",
5
5
  "devDependencies": {
6
- "@friggframework/eslint-config": "^1.0.7",
6
+ "@friggframework/eslint-config": "1.0.8-canary.2c1b5fd.0",
7
7
  "eslint": "^8.22.0",
8
8
  "jest": "^28.1.3",
9
9
  "prettier": "^2.7.1"
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "homepage": "https://github.com/friggframework/frigg#readme",
26
26
  "dependencies": {
27
- "@friggframework/assertions": "^1.0.5",
27
+ "@friggframework/assertions": "1.0.6-canary.2c1b5fd.0",
28
28
  "moment": "^2.29.4",
29
29
  "node-fetch": "^2.6.7"
30
30
  },
31
31
  "description": "",
32
- "gitHead": "9a593f4af5589c4278edd460f9c81b82d6474b4a"
32
+ "gitHead": "2c1b5fdc7753620959fc1c4e88b5222c6b25167a"
33
33
  }