@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipelab/core-node",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.31",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Pipelab automation engine for Node.js",
|
|
6
6
|
"license": "FSL-1.1-MIT",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"type-fest": "4.39.0",
|
|
41
41
|
"ws": "8.18.3",
|
|
42
42
|
"yauzl": "2.10.0",
|
|
43
|
-
"@pipelab/constants": "1.0.0-beta.
|
|
44
|
-
"@pipelab/shared": "1.0.0-beta.
|
|
43
|
+
"@pipelab/constants": "1.0.0-beta.27",
|
|
44
|
+
"@pipelab/shared": "1.0.0-beta.26"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/adm-zip": "0.5.7",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"tsdown": "0.21.2",
|
|
57
57
|
"typescript": "^5.0.0",
|
|
58
58
|
"vitest": "3.1.4",
|
|
59
|
-
"@pipelab/tsconfig": "1.0.0-beta.
|
|
59
|
+
"@pipelab/tsconfig": "1.0.0-beta.25"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsdown",
|
package/src/runner.ts
CHANGED
|
@@ -58,8 +58,10 @@ export async function runPipelineCommand(file: string, options: RunOptions, vers
|
|
|
58
58
|
console.log(`Executing pipeline: ${effectiveProjectName} (${effectivePipelineId})`);
|
|
59
59
|
|
|
60
60
|
if (!options.userData) throw new Error("userDataPath is required for runPipelineCommand");
|
|
61
|
+
const releaseTag = version.includes("beta") ? "beta" : "latest";
|
|
61
62
|
const context = new PipelabContext({
|
|
62
63
|
userDataPath: options.userData,
|
|
64
|
+
releaseTag,
|
|
63
65
|
});
|
|
64
66
|
|
|
65
67
|
await registerAllHandlers({ version, context });
|