@savvy-web/github-action-builder 0.7.2 → 0.7.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.
|
@@ -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.7.
|
|
77
|
+
const getPackageVersion = ()=>"0.7.3";
|
|
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.7.
|
|
309
|
+
version: "0.7.3"
|
|
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.7.
|
|
3
|
+
"version": "0.7.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": [
|
|
@@ -18,13 +18,14 @@
|
|
|
18
18
|
"effect-ts",
|
|
19
19
|
"esm"
|
|
20
20
|
],
|
|
21
|
-
"homepage": "https://github.com/savvy-web/github-action-builder
|
|
21
|
+
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/github-action-builder",
|
|
22
22
|
"bugs": {
|
|
23
|
-
"url": "https://github.com/savvy-web/
|
|
23
|
+
"url": "https://github.com/savvy-web/systems/issues"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/savvy-web/
|
|
27
|
+
"url": "git+https://github.com/savvy-web/systems.git",
|
|
28
|
+
"directory": "packages/github-action-builder"
|
|
28
29
|
},
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"author": {
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"@effect/printer": "^0.49.0",
|
|
51
52
|
"@effect/printer-ansi": "^0.49.0",
|
|
52
53
|
"@effect/typeclass": "^0.40.0",
|
|
53
|
-
"@rsbuild/core": "^2.0.
|
|
54
|
+
"@rsbuild/core": "^2.0.9",
|
|
54
55
|
"effect": "^3.21.2",
|
|
55
56
|
"jiti": "^2.7.0",
|
|
56
57
|
"picocolors": "^1.1.1",
|