@pipelab/core-node 1.0.0-beta.30 → 1.0.0-beta.31

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,14 @@
1
1
  # @pipelab/core-node
2
2
 
3
+ ## 1.0.0-beta.31
4
+
5
+ ### Patch Changes
6
+
7
+ - sd
8
+ - Updated dependencies
9
+ - @pipelab/constants@1.0.0-beta.27
10
+ - @pipelab/shared@1.0.0-beta.26
11
+
3
12
  ## 1.0.0-beta.30
4
13
 
5
14
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -53797,7 +53797,11 @@ async function runPipelineCommand(file, options, version) {
53797
53797
  const effectivePipelineId = pipelineId || "cli-run";
53798
53798
  console.log(`Executing pipeline: ${effectiveProjectName} (${effectivePipelineId})`);
53799
53799
  if (!options.userData) throw new Error("userDataPath is required for runPipelineCommand");
53800
- const context = new PipelabContext({ userDataPath: options.userData });
53800
+ const releaseTag = version.includes("beta") ? "beta" : "latest";
53801
+ const context = new PipelabContext({
53802
+ userDataPath: options.userData,
53803
+ releaseTag
53804
+ });
53801
53805
  await registerAllHandlers({
53802
53806
  version,
53803
53807
  context
package/dist/index.mjs CHANGED
@@ -53818,7 +53818,11 @@ async function runPipelineCommand(file, options, version) {
53818
53818
  const effectivePipelineId = pipelineId || "cli-run";
53819
53819
  console.log(`Executing pipeline: ${effectiveProjectName} (${effectivePipelineId})`);
53820
53820
  if (!options.userData) throw new Error("userDataPath is required for runPipelineCommand");
53821
- const context = new PipelabContext({ userDataPath: options.userData });
53821
+ const releaseTag = version.includes("beta") ? "beta" : "latest";
53822
+ const context = new PipelabContext({
53823
+ userDataPath: options.userData,
53824
+ releaseTag
53825
+ });
53822
53826
  await registerAllHandlers({
53823
53827
  version,
53824
53828
  context