@savvy-web/github-action-builder 2.1.0 → 2.1.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.
- package/bin/github-action-builder.js +1 -1
- package/cli/commands/init.js +1 -1
- package/index.d.ts +4 -4
- package/package.json +2 -2
- package/tsconfig/action.json +1 -0
|
@@ -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.1.
|
|
27
|
+
const cli = Command.run(rootCommand, { version: "2.1.1" });
|
|
28
28
|
/**
|
|
29
29
|
* Combined layer: AppLayer + the Node implementations of the CLI
|
|
30
30
|
* environment (FileSystem, Path, Terminal, Stdio, ChildProcessSpawner).
|
package/cli/commands/init.js
CHANGED
|
@@ -20,7 +20,7 @@ const forceOption = Flag.boolean("force").pipe(Flag.withAlias("f"), Flag.withDes
|
|
|
20
20
|
* Get current package version (replaced at build time).
|
|
21
21
|
*/
|
|
22
22
|
const getPackageVersion = () => {
|
|
23
|
-
return "2.1.
|
|
23
|
+
return "2.1.1";
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
26
26
|
* Generate package.json content.
|
package/index.d.ts
CHANGED
|
@@ -802,9 +802,9 @@ type AppError = ConfigError | ValidationError | BuildError | PersistError;
|
|
|
802
802
|
*/
|
|
803
803
|
declare const LoadConfigOptionsSchema: Schema.Struct<{
|
|
804
804
|
/** Working directory to search for config. Accepts string, Buffer, or URL. */
|
|
805
|
-
readonly cwd: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<URL, unknown>]>, never, never>>;
|
|
805
|
+
readonly cwd: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<import("node:url").URL, unknown>]>, never, never>>;
|
|
806
806
|
/** Explicit path to config file. Accepts string, Buffer, or URL. */
|
|
807
|
-
readonly configPath: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<URL, unknown>]>, never, never>>;
|
|
807
|
+
readonly configPath: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<import("node:url").URL, unknown>]>, never, never>>;
|
|
808
808
|
}>;
|
|
809
809
|
/**
|
|
810
810
|
* Options for loading configuration.
|
|
@@ -934,7 +934,7 @@ declare class ConfigService extends ConfigService_base {}
|
|
|
934
934
|
*/
|
|
935
935
|
declare const BuildRunnerOptionsSchema: Schema.Struct<{
|
|
936
936
|
/** Working directory for the build. Accepts string, Buffer, or URL. */
|
|
937
|
-
readonly cwd: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<URL, unknown>]>, never, never>>;
|
|
937
|
+
readonly cwd: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<import("node:url").URL, unknown>]>, never, never>>;
|
|
938
938
|
/** Clean output directory before building. Defaults to true. */
|
|
939
939
|
readonly clean: Schema.optional<Schema.Boolean>;
|
|
940
940
|
}>;
|
|
@@ -1190,7 +1190,7 @@ declare class PersistLocalService extends PersistLocalService_base {}
|
|
|
1190
1190
|
*/
|
|
1191
1191
|
declare const ValidateOptionsSchema: Schema.Struct<{
|
|
1192
1192
|
/** Working directory for file operations. Accepts string, Buffer, or URL. */
|
|
1193
|
-
readonly cwd: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<URL, unknown>]>, never, never>>;
|
|
1193
|
+
readonly cwd: Schema.optional<Schema.decodeTo<Schema.String, Schema.Union<readonly [Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>, unknown>, Schema.instanceOf<import("node:url").URL, unknown>]>, never, never>>;
|
|
1194
1194
|
/** Force strict mode regardless of environment. Auto-detects from CI when undefined. */
|
|
1195
1195
|
readonly strict: Schema.optional<Schema.Boolean>;
|
|
1196
1196
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/github-action-builder",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
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": [
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@effect/platform-node": "4.0.0-beta.101",
|
|
52
52
|
"@effected/yaml": "^0.6.0",
|
|
53
|
-
"@rsbuild/core": "^2.1.
|
|
53
|
+
"@rsbuild/core": "^2.1.8",
|
|
54
54
|
"effect": "4.0.0-beta.101",
|
|
55
55
|
"jiti": "^2.7.0",
|
|
56
56
|
"picocolors": "^1.1.1"
|