@toa.io/boot 0.7.3 → 0.7.4-dev.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/package.json +3 -3
- package/src/manifest.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/boot",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4-dev.0",
|
|
4
4
|
"description": "Toa Boot",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@toa.io/core": "0.7.1",
|
|
23
23
|
"@toa.io/filesystem": "0.7.0",
|
|
24
24
|
"@toa.io/generic": "0.7.0",
|
|
25
|
-
"@toa.io/norm": "0.8.0",
|
|
25
|
+
"@toa.io/norm": "0.8.1-dev.0",
|
|
26
26
|
"@toa.io/schema": "0.7.1",
|
|
27
27
|
"clone-deep": "4.0.1"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "7146630543c7c5e7bc0a3bd288c71ede409be1f4"
|
|
30
30
|
}
|
package/src/manifest.js
CHANGED
|
@@ -25,7 +25,9 @@ const manifest = async (path, options = {}) => {
|
|
|
25
25
|
for (const event of Object.values(manifest.events)) event.binding = asyncBinding
|
|
26
26
|
|
|
27
27
|
if (manifest.receivers) {
|
|
28
|
-
for (const receiver of Object.values(manifest.receivers))
|
|
28
|
+
for (const receiver of Object.values(manifest.receivers)) {
|
|
29
|
+
if (receiver.source === undefined) receiver.binding = asyncBinding
|
|
30
|
+
}
|
|
29
31
|
}
|
|
30
32
|
}
|
|
31
33
|
|