@synergenius/flow-weaver 0.14.1 → 0.14.2
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.14.
|
|
9674
|
+
VERSION = "0.14.2";
|
|
9675
9675
|
}
|
|
9676
9676
|
});
|
|
9677
9677
|
|
|
@@ -119514,7 +119514,7 @@ async function mcpSetupCommand(options, deps) {
|
|
|
119514
119514
|
|
|
119515
119515
|
// src/cli/index.ts
|
|
119516
119516
|
init_error_utils();
|
|
119517
|
-
var version2 = true ? "0.14.
|
|
119517
|
+
var version2 = true ? "0.14.2" : "0.0.0-dev";
|
|
119518
119518
|
var program2 = new Command();
|
|
119519
119519
|
program2.name("flow-weaver").description("Flow Weaver Annotations - Compile and validate workflow files").version(version2, "-v, --version", "Output the current version");
|
|
119520
119520
|
program2.configureOutput({
|
|
@@ -23,7 +23,7 @@ export { CloudflareTarget } from './targets/cloudflare.js';
|
|
|
23
23
|
export { InngestTarget } from './targets/inngest.js';
|
|
24
24
|
export { GitHubActionsTarget } from './targets/github-actions.js';
|
|
25
25
|
export { GitLabCITarget } from './targets/gitlab-ci.js';
|
|
26
|
-
export { BaseCICDTarget, NODE_ACTION_MAP } from './targets/cicd-base.js';
|
|
26
|
+
export { BaseCICDTarget, NODE_ACTION_MAP, type CICDStep, type CICDJob, type ActionMapping, } from './targets/cicd-base.js';
|
|
27
27
|
import { ExportTargetRegistry } from './targets/base.js';
|
|
28
28
|
/**
|
|
29
29
|
* Create an export target registry via marketplace discovery.
|
package/dist/deployment/index.js
CHANGED
|
@@ -28,7 +28,7 @@ export { CloudflareTarget } from './targets/cloudflare.js';
|
|
|
28
28
|
export { InngestTarget } from './targets/inngest.js';
|
|
29
29
|
export { GitHubActionsTarget } from './targets/github-actions.js';
|
|
30
30
|
export { GitLabCITarget } from './targets/gitlab-ci.js';
|
|
31
|
-
export { BaseCICDTarget, NODE_ACTION_MAP } from './targets/cicd-base.js';
|
|
31
|
+
export { BaseCICDTarget, NODE_ACTION_MAP, } from './targets/cicd-base.js';
|
|
32
32
|
import * as path from 'path';
|
|
33
33
|
import { ExportTargetRegistry } from './targets/base.js';
|
|
34
34
|
/**
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.2";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED