@savvy-web/github-action-builder 0.7.7 → 0.7.8
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 +1 -1
- package/package.json +7 -6
- package/tsdoc-metadata.json +1 -1
|
@@ -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:
|
|
29
|
+
version: "0.7.8"
|
|
30
30
|
});
|
|
31
31
|
/**
|
|
32
32
|
* Combined layer: AppLayer + NodeContext for CLI.
|
package/cli/commands/init.js
CHANGED
|
@@ -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
|
|
23
|
+
return "0.7.8";
|
|
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<
|
|
1564
|
+
declare const AppLayer: Layer.Layer<ValidationService | ConfigService | PersistLocalService | BuildService, 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.
|
|
3
|
+
"version": "0.7.8",
|
|
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,20 +39,21 @@
|
|
|
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": "./public/tsconfig/action.json",
|
|
43
|
+
"./package.json": "./package.json"
|
|
43
44
|
},
|
|
44
45
|
"bin": {
|
|
45
46
|
"github-action-builder": "bin/github-action-builder.js"
|
|
46
47
|
},
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"@effect/cli": "^0.75.
|
|
49
|
+
"@effect/cli": "^0.75.2",
|
|
49
50
|
"@effect/platform": "^0.96.1",
|
|
50
|
-
"@effect/platform-node": "^0.
|
|
51
|
+
"@effect/platform-node": "^0.107.0",
|
|
51
52
|
"@effect/printer": "^0.49.0",
|
|
52
53
|
"@effect/printer-ansi": "^0.49.0",
|
|
53
54
|
"@effect/typeclass": "^0.40.0",
|
|
54
|
-
"@rsbuild/core": "^2.0.
|
|
55
|
-
"effect": "^3.21.
|
|
55
|
+
"@rsbuild/core": "^2.0.12",
|
|
56
|
+
"effect": "^3.21.3",
|
|
56
57
|
"jiti": "^2.7.0",
|
|
57
58
|
"picocolors": "^1.1.1",
|
|
58
59
|
"yaml-effect": "^0.6.0"
|