@savvy-web/github-action-builder 0.2.0 → 0.2.1

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.
@@ -64,7 +64,7 @@ const actionNameArg = Args.text({
64
64
  name: "action-name"
65
65
  }).pipe(Args.withDescription("Name of the GitHub Action (also the output directory)"));
66
66
  const forceOption = Options.boolean("force").pipe(Options.withAlias("f"), Options.withDescription("Overwrite existing files"), Options.withDefault(false));
67
- const getPackageVersion = ()=>"0.2.0";
67
+ const getPackageVersion = ()=>"0.2.1";
68
68
  const generatePackageJson = (name)=>{
69
69
  const version = getPackageVersion();
70
70
  const pkg = {
@@ -297,7 +297,7 @@ const rootCommand = Command.make("github-action-builder").pipe(Command.withSubco
297
297
  ]));
298
298
  const cli = Command.run(rootCommand, {
299
299
  name: "github-action-builder",
300
- version: "0.2.0"
300
+ version: "0.2.1"
301
301
  });
302
302
  const CliLayer = Layer.merge(AppLayer, NodeContext.layer);
303
303
  const main = Effect.suspend(()=>cli(process.argv)).pipe(Effect.provide(CliLayer));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/github-action-builder",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "A zero-config build tool for creating GitHub Actions from TypeScript. Bundles with @vercel/ncc, validates action.yml against GitHub's schema, and outputs production-ready Node.js 24 actions.",
6
6
  "keywords": [
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.56.3"
8
+ "packageVersion": "7.57.6"
9
9
  }
10
10
  ]
11
11
  }