@savvy-web/github-action-builder 0.7.8 → 0.7.10

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.7.8"
29
+ version: "0.7.10"
30
30
  });
31
31
  /**
32
32
  * Combined layer: AppLayer + NodeContext for CLI.
@@ -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.7.8";
23
+ return "0.7.10";
24
24
  };
25
25
  /**
26
26
  * Generate package.json content.
package/index.d.ts CHANGED
@@ -1561,7 +1561,7 @@ declare const PersistLocalLayer: Layer.Layer<PersistLocalService, never, never>;
1561
1561
  *
1562
1562
  * @public
1563
1563
  */
1564
- declare const AppLayer: Layer.Layer<ValidationService | ConfigService | PersistLocalService | BuildService, never, never>;
1564
+ declare const AppLayer: Layer.Layer<ConfigService | ValidationService | BuildService | PersistLocalService, never, never>;
1565
1565
  //#endregion
1566
1566
  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, WriteError, WriteErrorBase, defineConfig };
1567
1567
  //# 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.7.8",
3
+ "version": "0.7.10",
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": [
@@ -47,10 +47,13 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@effect/cli": "^0.75.2",
50
+ "@effect/cluster": "^0.59.0",
50
51
  "@effect/platform": "^0.96.1",
51
52
  "@effect/platform-node": "^0.107.0",
52
53
  "@effect/printer": "^0.49.0",
53
54
  "@effect/printer-ansi": "^0.49.0",
55
+ "@effect/rpc": "^0.75.1",
56
+ "@effect/sql": "^0.51.1",
54
57
  "@effect/typeclass": "^0.40.0",
55
58
  "@rsbuild/core": "^2.0.12",
56
59
  "effect": "^3.21.3",
@@ -2,8 +2,8 @@
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
4
  "esModuleInterop": true,
5
- "forceConsistentCasingInFileNames": true,
6
5
  "exactOptionalPropertyTypes": true,
6
+ "forceConsistentCasingInFileNames": true,
7
7
  "lib": ["ES2022"],
8
8
  "module": "ESNext",
9
9
  "moduleResolution": "bundler",
@@ -122,6 +122,7 @@ function bundleEntry(entry, config, cwd) {
122
122
  __dirname: "node-module",
123
123
  __filename: "node-module"
124
124
  },
125
+ module: { parser: { javascript: { importMeta: false } } },
125
126
  output: { asyncChunks: false }
126
127
  } }
127
128
  } }),
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.58.8"
8
+ "packageVersion": "7.58.9"
9
9
  }
10
10
  ]
11
11
  }