@pumped-fn/core-next 0.5.64 → 0.5.66

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,5 +1,20 @@
1
1
  # @pumped-fn/core-next
2
2
 
3
+ ## 0.5.66
4
+
5
+ ### Patch Changes
6
+
7
+ - [`1d3e85b`](https://github.com/pumped-fn/pumped-fn/commit/1d3e85ba3ea2aff508634d30aff3647be40784aa) Thanks [@lagz0ne](https://github.com/lagz0ne)! - expose executor reference to extension on pod resolve, so extension can extract the config from that
8
+
9
+ ## 0.5.65
10
+
11
+ ### Patch Changes
12
+
13
+ - [`4d87548`](https://github.com/pumped-fn/pumped-fn/commit/4d87548a3eaad1ad0cf5b90e96a078434900e5d9) Thanks [@lagz0ne](https://github.com/lagz0ne)! - - feat: changed plugin to extension, unified the API for both scope and plugin
14
+ - feat: made scope and pod to be MetaContainer. As such, executors and flows can read meta from scope, that'll be the way to configure
15
+ - chore: cleanup tests, reduce amount of test bloats
16
+ - chore: removed placeholder, prepare and adapt
17
+
3
18
  ## 0.5.64
4
19
 
5
20
  ### Patch Changes
@@ -1,10 +1,12 @@
1
1
  //#region rolldown:runtime
2
2
  var __defProp = Object.defineProperty;
3
- var __export = (target, all) => {
3
+ var __export = (all) => {
4
+ let target = {};
4
5
  for (var name in all) __defProp(target, name, {
5
6
  get: all[name],
6
7
  enumerable: true
7
8
  });
9
+ return target;
8
10
  };
9
11
 
10
12
  //#endregion