@synergenius/flow-weaver 0.20.3 → 0.20.4
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
|
@@ -9671,7 +9671,7 @@ var VERSION;
|
|
|
9671
9671
|
var init_generated_version = __esm({
|
|
9672
9672
|
"src/generated-version.ts"() {
|
|
9673
9673
|
"use strict";
|
|
9674
|
-
VERSION = "0.20.
|
|
9674
|
+
VERSION = "0.20.4";
|
|
9675
9675
|
}
|
|
9676
9676
|
});
|
|
9677
9677
|
|
|
@@ -106710,7 +106710,7 @@ function displayInstalledPackage(pkg) {
|
|
|
106710
106710
|
// src/cli/index.ts
|
|
106711
106711
|
init_logger();
|
|
106712
106712
|
init_error_utils();
|
|
106713
|
-
var version2 = true ? "0.20.
|
|
106713
|
+
var version2 = true ? "0.20.4" : "0.0.0-dev";
|
|
106714
106714
|
var program2 = new Command();
|
|
106715
106715
|
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", () => {
|
|
106716
106716
|
logger.banner(version2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.20.
|
|
1
|
+
export declare const VERSION = "0.20.4";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
|
@@ -538,6 +538,7 @@ flow-weaver modify setLabel --file <path> --nodeId <id> --label <text>
|
|
|
538
538
|
|
|
539
539
|
Sets the display label for a node instance.
|
|
540
540
|
|
|
541
|
+
|
|
541
542
|
**Examples:**
|
|
542
543
|
```bash
|
|
543
544
|
flow-weaver modify addNode --file workflow.ts --nodeId validator --nodeType validateInput
|
package/package.json
CHANGED