@savvy-web/github-action-builder 0.1.1 → 0.1.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.
- package/bin/github-action-builder.js +2 -2
- package/package.json +18 -2
|
@@ -54,7 +54,7 @@ const actionNameArg = Args.text({
|
|
|
54
54
|
name: "action-name"
|
|
55
55
|
}).pipe(Args.withDescription("Name of the GitHub Action (also the output directory)"));
|
|
56
56
|
const forceOption = Options.boolean("force").pipe(Options.withAlias("f"), Options.withDescription("Overwrite existing files"), Options.withDefault(false));
|
|
57
|
-
const getPackageVersion = ()=>"0.1.
|
|
57
|
+
const getPackageVersion = ()=>"0.1.3";
|
|
58
58
|
const generatePackageJson = (name)=>{
|
|
59
59
|
const version = getPackageVersion();
|
|
60
60
|
const pkg = {
|
|
@@ -287,7 +287,7 @@ const rootCommand = Command.make("github-action-builder").pipe(Command.withSubco
|
|
|
287
287
|
]));
|
|
288
288
|
const cli = Command.run(rootCommand, {
|
|
289
289
|
name: "github-action-builder",
|
|
290
|
-
version: "0.1.
|
|
290
|
+
version: "0.1.3"
|
|
291
291
|
});
|
|
292
292
|
const CliLayer = Layer.merge(AppLayer, NodeContext.layer);
|
|
293
293
|
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.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "https://github.com/savvy-web/github-action-builder.git"
|
|
27
|
+
"url": "git+https://github.com/savvy-web/github-action-builder.git"
|
|
28
28
|
},
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"author": {
|
|
@@ -54,6 +54,22 @@
|
|
|
54
54
|
"picocolors": "^1.1.1",
|
|
55
55
|
"yaml": "^2.8.2"
|
|
56
56
|
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@types/node": "^25.2.3",
|
|
59
|
+
"@typescript/native-preview": "7.0.0-dev.20260214.1",
|
|
60
|
+
"typescript": "^5.9.3"
|
|
61
|
+
},
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"@types/node": {
|
|
64
|
+
"optional": false
|
|
65
|
+
},
|
|
66
|
+
"@typescript/native-preview": {
|
|
67
|
+
"optional": false
|
|
68
|
+
},
|
|
69
|
+
"typescript": {
|
|
70
|
+
"optional": false
|
|
71
|
+
}
|
|
72
|
+
},
|
|
57
73
|
"files": [
|
|
58
74
|
"!github-action-builder.api.json",
|
|
59
75
|
"!tsconfig.json",
|