@synergenius/flow-weaver 0.17.6 → 0.17.7
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/dist/cli/flow-weaver.mjs
CHANGED
|
@@ -25559,7 +25559,7 @@ var VERSION2;
|
|
|
25559
25559
|
var init_generated_version = __esm({
|
|
25560
25560
|
"src/generated-version.ts"() {
|
|
25561
25561
|
"use strict";
|
|
25562
|
-
VERSION2 = "0.17.
|
|
25562
|
+
VERSION2 = "0.17.7";
|
|
25563
25563
|
}
|
|
25564
25564
|
});
|
|
25565
25565
|
|
|
@@ -108926,7 +108926,7 @@ function displayInstalledPackage(pkg) {
|
|
|
108926
108926
|
|
|
108927
108927
|
// src/cli/index.ts
|
|
108928
108928
|
init_error_utils();
|
|
108929
|
-
var version2 = true ? "0.17.
|
|
108929
|
+
var version2 = true ? "0.17.7" : "0.0.0-dev";
|
|
108930
108930
|
var program2 = new Command();
|
|
108931
108931
|
program2.name("flow-weaver").description("Flow Weaver Annotations - Compile and validate workflow files").option("-v, --version", "Output the current version").option("--no-color", "Disable colors").option("--color", "Force colors").on("option:version", () => {
|
|
108932
108932
|
logger.banner(version2);
|
|
@@ -122,7 +122,7 @@ export class BaseCICDTarget extends BaseExportTarget {
|
|
|
122
122
|
gitlabScript: deployConfig.script
|
|
123
123
|
? (Array.isArray(deployConfig.script)
|
|
124
124
|
? deployConfig.script
|
|
125
|
-
:
|
|
125
|
+
: deployConfig.script.split('\n'))
|
|
126
126
|
: undefined,
|
|
127
127
|
gitlabImage: deployConfig.image,
|
|
128
128
|
label: deployConfig.label || step.name,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.17.
|
|
1
|
+
export declare const VERSION = "0.17.7";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED