@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 +9 -0
- package/dist/index.cjs +5 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/runner.ts +2 -0
package/CHANGELOG.md
CHANGED
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
|
|
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
|
|
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
|