@savvy-web/github-action-builder 0.6.2 → 0.6.4

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/677.js CHANGED
@@ -249,7 +249,7 @@ function bundleEntry(entry, config, cwd) {
249
249
  js: "[name].js"
250
250
  },
251
251
  externals: [
252
- /^node:/,
252
+ (data)=>data.request?.startsWith("node:") ? `node-commonjs ${data.request}` : false,
253
253
  ...config.build.externals
254
254
  ],
255
255
  cleanDistPath: false,
@@ -74,7 +74,7 @@ const actionNameArg = Args.text({
74
74
  name: "action-name"
75
75
  }).pipe(Args.withDescription("Name of the GitHub Action (also the output directory)"));
76
76
  const forceOption = Options.boolean("force").pipe(Options.withAlias("f"), Options.withDescription("Overwrite existing files"), Options.withDefault(false));
77
- const getPackageVersion = ()=>"0.6.2";
77
+ const getPackageVersion = ()=>"0.6.4";
78
78
  const generatePackageJson = (name)=>{
79
79
  const version = getPackageVersion();
80
80
  const pkg = {
@@ -306,7 +306,7 @@ const rootCommand = Command.make("github-action-builder").pipe(Command.withSubco
306
306
  ]));
307
307
  const cli = Command.run(rootCommand, {
308
308
  name: "github-action-builder",
309
- version: "0.6.2"
309
+ version: "0.6.4"
310
310
  });
311
311
  const CliLayer = Layer.merge(AppLayer, NodeContext.layer);
312
312
  const main = Effect.suspend(()=>cli(process.argv)).pipe(Effect.provide(CliLayer), Effect.catchAllCause((cause)=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/github-action-builder",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
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": [
@@ -44,22 +44,22 @@
44
44
  "github-action-builder": "./bin/github-action-builder.js"
45
45
  },
46
46
  "dependencies": {
47
- "@effect/cli": "^0.75.0",
48
- "@effect/platform": "^0.96.0",
47
+ "@effect/cli": "^0.75.1",
48
+ "@effect/platform": "^0.96.1",
49
49
  "@effect/platform-node": "^0.106.0",
50
50
  "@effect/printer": "^0.49.0",
51
51
  "@effect/printer-ansi": "^0.49.0",
52
52
  "@effect/typeclass": "^0.40.0",
53
- "@rsbuild/core": "^1.7.4",
54
- "effect": "^3.21.0",
55
- "jiti": "^2.6.1",
53
+ "@rsbuild/core": "^2.0.6",
54
+ "effect": "^3.21.2",
55
+ "jiti": "^2.7.0",
56
56
  "picocolors": "^1.1.1",
57
- "yaml-effect": "^0.2.3"
57
+ "yaml-effect": "^0.6.0"
58
58
  },
59
59
  "peerDependencies": {
60
- "@types/node": "^25.5.0",
61
- "@typescript/native-preview": "^7.0.0-dev.20260124.1",
62
- "typescript": "^5.9.3"
60
+ "@types/node": "^25.6.0",
61
+ "@typescript/native-preview": "^7.0.0-dev.20260513.1",
62
+ "typescript": "^6.0.0"
63
63
  },
64
64
  "peerDependenciesMeta": {
65
65
  "@types/node": {
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.57.7"
8
+ "packageVersion": "7.58.7"
9
9
  }
10
10
  ]
11
11
  }