@pogodisco/zephyr 1.5.8 → 1.5.9
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/dist/workflow-module.js +1 -1
- package/package.json +1 -1
package/dist/workflow-module.js
CHANGED
|
@@ -316,7 +316,7 @@ function createModule(config) {
|
|
|
316
316
|
services: {},
|
|
317
317
|
});
|
|
318
318
|
function buildWorkflowMap() {
|
|
319
|
-
const depWFs = Object.fromEntries(Object.entries(deps).flatMap(([name, mod]) => Object.entries(mod.
|
|
319
|
+
const depWFs = Object.fromEntries(Object.entries(deps).flatMap(([name, mod]) => Object.entries(mod.__public).map(([k, wf]) => [`${name}.${k}`, wf])));
|
|
320
320
|
const internalBase = { ...own, ...depWFs };
|
|
321
321
|
const exposed = {};
|
|
322
322
|
if (config.expose) {
|