@synergenius/flow-weaver 0.21.13 → 0.21.14
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.21.
|
|
9674
|
+
VERSION = "0.21.14";
|
|
9675
9675
|
}
|
|
9676
9676
|
});
|
|
9677
9677
|
|
|
@@ -93117,7 +93117,7 @@ function displayInstalledPackage(pkg) {
|
|
|
93117
93117
|
// src/cli/index.ts
|
|
93118
93118
|
init_logger();
|
|
93119
93119
|
init_error_utils();
|
|
93120
|
-
var version2 = true ? "0.21.
|
|
93120
|
+
var version2 = true ? "0.21.14" : "0.0.0-dev";
|
|
93121
93121
|
var program2 = new Command();
|
|
93122
93122
|
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", () => {
|
|
93123
93123
|
logger.banner(version2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.21.
|
|
1
|
+
export declare const VERSION = "0.21.14";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synergenius/flow-weaver",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.14",
|
|
4
4
|
"description": "Deterministic workflow compiler for AI agents. Compiles to standalone TypeScript, no runtime dependencies.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -31,6 +31,10 @@
|
|
|
31
31
|
"types": "./dist/doc-metadata/index.d.ts",
|
|
32
32
|
"default": "./dist/doc-metadata/index.js"
|
|
33
33
|
},
|
|
34
|
+
"./docs": {
|
|
35
|
+
"types": "./dist/docs/index.d.ts",
|
|
36
|
+
"default": "./dist/docs/index.js"
|
|
37
|
+
},
|
|
34
38
|
"./ast": {
|
|
35
39
|
"types": "./dist/ast/index.d.ts",
|
|
36
40
|
"default": "./dist/ast/index.js"
|