milkio 0.7.0-alpha.11 → 0.7.0-alpha.12
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/kernel/context.ts +1 -1
- package/package.json +1 -1
- package/types.ts +1 -1
package/kernel/context.ts
CHANGED
|
@@ -46,7 +46,7 @@ export const createStep = () => {
|
|
|
46
46
|
let result: Record<any, any> = {};
|
|
47
47
|
for (const key in stage) {
|
|
48
48
|
const value = (stage as any)[key];
|
|
49
|
-
if (!key.
|
|
49
|
+
if (!key.startsWith('$')) result[key] = value;
|
|
50
50
|
}
|
|
51
51
|
return result;
|
|
52
52
|
}
|
package/package.json
CHANGED
package/types.ts
CHANGED