@savvy-web/github-action-builder 0.8.0 → 1.0.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.
@@ -26,7 +26,7 @@ const rootCommand = Command.make("github-action-builder").pipe(Command.withSubco
26
26
  */
27
27
  const cli = Command.run(rootCommand, {
28
28
  name: "github-action-builder",
29
- version: "0.8.0"
29
+ version: "1.0.1"
30
30
  });
31
31
  /**
32
32
  * Combined layer: AppLayer + NodeContext for CLI.
@@ -88,4 +88,4 @@ const buildCommand = Command.make("build", {
88
88
  }, buildHandler);
89
89
 
90
90
  //#endregion
91
- export { buildCommand, configOption, noValidateOption, quietOption };
91
+ export { buildCommand, configOption, noPersistOption, noValidateOption, quietOption };
@@ -2,4 +2,4 @@ import { buildCommand, configOption, noValidateOption, quietOption } from "./bui
2
2
  import { initCommand } from "./init.js";
3
3
  import { validateCommand } from "./validate.js";
4
4
 
5
- export { };
5
+ export { buildCommand, initCommand, validateCommand };
@@ -20,7 +20,7 @@ const forceOption = Options.boolean("force").pipe(Options.withAlias("f"), Option
20
20
  * Get current package version (replaced at build time).
21
21
  */
22
22
  const getPackageVersion = () => {
23
- return "0.8.0";
23
+ return "1.0.1";
24
24
  };
25
25
  /**
26
26
  * Generate package.json content.
package/index.d.ts CHANGED
@@ -1618,7 +1618,7 @@ declare const PersistLocalLayer: Layer.Layer<PersistLocalService, never, never>;
1618
1618
  *
1619
1619
  * @public
1620
1620
  */
1621
- declare const AppLayer: Layer.Layer<ConfigService | ValidationService | BuildService | PersistLocalService, never, never>;
1621
+ declare const AppLayer: Layer.Layer<BuildService | ConfigService | PersistLocalService | ValidationService, never, never>;
1622
1622
  //#endregion
1623
1623
  export { ActionYmlMissing, ActionYmlMissingBase, ActionYmlPathError, ActionYmlPathErrorBase, type ActionYmlResult, ActionYmlResultSchema, ActionYmlSchemaError, ActionYmlSchemaErrorBase, ActionYmlSyntaxError, ActionYmlSyntaxErrorBase, type AppError, AppLayer, type BuildError, BuildFailed, BuildFailedBase, BuildLayer, type BuildOptions, BuildOptionsSchema, type BuildResult, BuildResultSchema, type BuildRunnerOptions, BuildRunnerOptionsSchema, BuildService, BundleFailed, BundleFailedBase, type BundleResult, BundleResultSchema, type BundleStats, BundleStatsSchema, CleanError, CleanErrorBase, type Config, type ConfigError, type ConfigInput, ConfigInputSchema, ConfigInvalid, ConfigInvalidBase, ConfigLayer, ConfigLoadFailed, ConfigLoadFailedBase, ConfigNotFound, ConfigNotFoundBase, ConfigSchema, ConfigService, type DetectEntriesResult, DetectEntriesResultSchema, type DetectedEntry, DetectedEntrySchema, type Entries, EntriesSchema, EntryFileMissing, EntryFileMissingBase, GitHubAction, type GitHubActionBuildResult, GitHubActionBuildResultSchema, type GitHubActionOptions, type LoadConfigOptions, LoadConfigOptionsSchema, type LoadConfigResult, MainEntryMissing, MainEntryMissingBase, type PersistError, PersistLocalError, PersistLocalErrorBase, PersistLocalLayer, type PersistLocalOptions, PersistLocalOptionsSchema, type PersistLocalResult, PersistLocalResultSchema, type PersistLocalRunnerOptions, PersistLocalRunnerOptionsSchema, PersistLocalService, type ValidateOptions, ValidateOptionsSchema, type ValidationError, type ValidationErrorItem, ValidationErrorSchema, ValidationFailed, ValidationFailedBase, ValidationLayer, type ValidationOptions, ValidationOptionsSchema, type ValidationResult, ValidationResultSchema, ValidationService, type ValidationWarning, ValidationWarningSchema, WorkerEntryInvalidName, WorkerEntryInvalidNameBase, WorkerEntryMissing, WorkerEntryMissingBase, WriteError, WriteErrorBase, defineConfig };
1624
1624
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/github-action-builder",
3
- "version": "0.8.0",
3
+ "version": "1.0.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": [
@@ -39,7 +39,7 @@
39
39
  "types": "./index.d.ts",
40
40
  "import": "./index.js"
41
41
  },
42
- "./tsconfig/action.json": "./public/tsconfig/action.json",
42
+ "./tsconfig/action.json": "./tsconfig/action.json",
43
43
  "./package.json": "./package.json"
44
44
  },
45
45
  "bin": {
@@ -55,7 +55,7 @@
55
55
  "@effect/rpc": "^0.75.1",
56
56
  "@effect/sql": "^0.51.1",
57
57
  "@effect/typeclass": "^0.40.0",
58
- "@rsbuild/core": "^2.0.15",
58
+ "@rsbuild/core": "^2.1.1",
59
59
  "effect": "^3.21.4",
60
60
  "jiti": "^2.7.0",
61
61
  "picocolors": "^1.1.1",
@@ -107,4 +107,4 @@ const ActionYml = Schema.Struct({
107
107
  });
108
108
 
109
109
  //#endregion
110
- export { ActionYml };
110
+ export { ActionInput, ActionOutput, ActionYml, Branding, BrandingColor, BrandingIcon, Runs };
package/schemas/path.js CHANGED
@@ -40,4 +40,4 @@ const PathLikeSchema = Schema.transform(Schema.Union(Schema.String, Schema.insta
40
40
  const OptionalPathLikeSchema = Schema.optional(PathLikeSchema);
41
41
 
42
42
  //#endregion
43
- export { OptionalPathLikeSchema };
43
+ export { OptionalPathLikeSchema, PathLikeSchema, pathLikeToString };
File without changes