@synergenius/flow-weaver 0.27.4 → 0.27.5
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
|
@@ -5987,7 +5987,7 @@ var VERSION;
|
|
|
5987
5987
|
var init_generated_version = __esm({
|
|
5988
5988
|
"src/generated-version.ts"() {
|
|
5989
5989
|
"use strict";
|
|
5990
|
-
VERSION = "0.27.
|
|
5990
|
+
VERSION = "0.27.5";
|
|
5991
5991
|
}
|
|
5992
5992
|
});
|
|
5993
5993
|
|
|
@@ -88468,7 +88468,7 @@ function parseIntStrict(value) {
|
|
|
88468
88468
|
// src/cli/index.ts
|
|
88469
88469
|
init_logger();
|
|
88470
88470
|
init_error_utils();
|
|
88471
|
-
var version2 = true ? "0.27.
|
|
88471
|
+
var version2 = true ? "0.27.5" : "0.0.0-dev";
|
|
88472
88472
|
var program2 = new Command();
|
|
88473
88473
|
program2.name("fw").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", () => {
|
|
88474
88474
|
logger.banner(version2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.27.
|
|
1
|
+
export declare const VERSION = "0.27.5";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synergenius/flow-weaver",
|
|
3
|
-
"version": "0.27.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.27.5",
|
|
4
|
+
"description": "Flow Weaver: deterministic TypeScript workflow compiler. Define workflows with JSDoc annotations, compile to standalone functions with zero runtime dependencies.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -138,12 +138,18 @@
|
|
|
138
138
|
"keywords": [
|
|
139
139
|
"flow-weaver",
|
|
140
140
|
"workflow",
|
|
141
|
+
"workflow-engine",
|
|
142
|
+
"workflow-automation",
|
|
143
|
+
"orchestration",
|
|
141
144
|
"ai-agent",
|
|
142
145
|
"llm",
|
|
143
146
|
"mcp",
|
|
144
|
-
"deterministic",
|
|
145
147
|
"typescript",
|
|
146
148
|
"compiler",
|
|
149
|
+
"code-generation",
|
|
150
|
+
"visual-programming",
|
|
151
|
+
"node-graph",
|
|
152
|
+
"durable-execution",
|
|
147
153
|
"inngest",
|
|
148
154
|
"serverless"
|
|
149
155
|
],
|