@savvy-web/github-action-builder 2.3.1 → 2.3.3

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.
@@ -24,7 +24,7 @@ const rootCommand = Command.make("github-action-builder").pipe(Command.withSubco
24
24
  /**
25
25
  * CLI application: reads argv from the Stdio service provided by NodeServices.
26
26
  */
27
- const cli = Command.run(rootCommand, { version: "2.3.1" });
27
+ const cli = Command.run(rootCommand, { version: "2.3.3" });
28
28
  /**
29
29
  * Combined layer: AppLayer + the Node implementations of the CLI
30
30
  * environment (FileSystem, Path, Terminal, Stdio, ChildProcessSpawner).
@@ -18,15 +18,15 @@ const configOption = Flag.file("config").pipe(Flag.withAlias("c"), Flag.withDesc
18
18
  /**
19
19
  * Quiet mode option - suppress non-error output.
20
20
  */
21
- const quietOption = Flag.boolean("quiet").pipe(Flag.withAlias("q"), Flag.withDescription("Suppress non-error output"));
21
+ const quietOption = Flag.boolean("quiet").pipe(Flag.withAlias("q"), Flag.withDescription("Suppress non-error output"), Flag.withDefault(false));
22
22
  /**
23
23
  * Skip validation option.
24
24
  */
25
- const noValidateOption = Flag.boolean("no-validate").pipe(Flag.withDescription("Skip validation step"));
25
+ const noValidateOption = Flag.boolean("no-validate").pipe(Flag.withDescription("Skip validation step"), Flag.withDefault(false));
26
26
  /**
27
27
  * Skip persist-local option.
28
28
  */
29
- const noPersistOption = Flag.boolean("no-persist").pipe(Flag.withDescription("Skip persisting build output to local action directory"));
29
+ const noPersistOption = Flag.boolean("no-persist").pipe(Flag.withDescription("Skip persisting build output to local action directory"), Flag.withDefault(false));
30
30
  /**
31
31
  * Build command handler using Effect services.
32
32
  */
@@ -15,12 +15,12 @@ const actionNameArg = Argument.string("action-name").pipe(Argument.withDescripti
15
15
  /**
16
16
  * Force overwrite option.
17
17
  */
18
- const forceOption = Flag.boolean("force").pipe(Flag.withAlias("f"), Flag.withDescription("Overwrite existing files"));
18
+ const forceOption = Flag.boolean("force").pipe(Flag.withAlias("f"), Flag.withDescription("Overwrite existing files"), Flag.withDefault(false));
19
19
  /**
20
20
  * Get current package version (replaced at build time).
21
21
  */
22
22
  const getPackageVersion = () => {
23
- return "2.3.1";
23
+ return "2.3.3";
24
24
  };
25
25
  /**
26
26
  * Generate package.json content.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/github-action-builder",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "private": false,
5
5
  "description": "A zero-config build tool for creating GitHub Actions from TypeScript. Bundles with rsbuild, validates action.yml against GitHub's schema, and outputs production-ready Node.js 24 actions.",
6
6
  "keywords": [
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@effect/platform-node": "4.0.0-rc.112",
52
- "@effected/yaml": "^0.13.0",
52
+ "@effected/yaml": "^0.14.0",
53
53
  "@rsbuild/core": "^2.2.3",
54
54
  "effect": "4.0.0-rc.112",
55
55
  "jiti": "^2.7.0",