@savvy-web/github-action-builder 0.3.0 → 0.4.0
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/{123.js → 677.js} +8 -11
- package/bin/github-action-builder.js +6 -3
- package/index.d.ts +16 -16
- package/index.js +3 -2
- package/package.json +10 -10
- package/tsdoc-metadata.json +1 -1
package/{123.js → 677.js}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Context, Data, Effect, Layer, ParseResult, Schema } from "effect";
|
|
2
2
|
import { copyFileSync, existsSync, mkdirSync, readFileSync, readdirSync, rmSync, statSync, writeFileSync } from "node:fs";
|
|
3
3
|
import { createRequire } from "node:module";
|
|
4
4
|
import { dirname, join, relative, resolve } from "node:path";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
6
6
|
import { createHash } from "node:crypto";
|
|
7
|
-
import { parse } from "yaml";
|
|
7
|
+
import { parse } from "yaml-effect";
|
|
8
8
|
const ConfigNotFoundBase = Data.TaggedError("ConfigNotFound");
|
|
9
9
|
class ConfigNotFound extends ConfigNotFoundBase {
|
|
10
10
|
}
|
|
@@ -495,7 +495,7 @@ function validateActionYmlPaths(actionYmlPath, destDir) {
|
|
|
495
495
|
return Effect.gen(function*() {
|
|
496
496
|
if (!existsSync(actionYmlPath)) return;
|
|
497
497
|
const content = readFileSync(actionYmlPath, "utf8");
|
|
498
|
-
const parsed = parse(content);
|
|
498
|
+
const parsed = yield* parse(content).pipe(Effect.catchAll(()=>Effect.succeed(null)));
|
|
499
499
|
if (!parsed?.runs) return;
|
|
500
500
|
for (const entryType of [
|
|
501
501
|
"main",
|
|
@@ -725,13 +725,10 @@ const ValidationServiceLive = Layer.effect(ValidationService, Effect.gen(functio
|
|
|
725
725
|
message: "Failed to read file"
|
|
726
726
|
})
|
|
727
727
|
});
|
|
728
|
-
const parsed = yield* Effect
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
message: error instanceof Error ? error.message : "Invalid YAML syntax"
|
|
733
|
-
})
|
|
734
|
-
});
|
|
728
|
+
const parsed = yield* parse(content).pipe(Effect.mapError((error)=>new ActionYmlSyntaxError({
|
|
729
|
+
path,
|
|
730
|
+
message: error.message
|
|
731
|
+
})));
|
|
735
732
|
if (!parsed || "object" != typeof parsed) return yield* new ActionYmlSyntaxError({
|
|
736
733
|
path,
|
|
737
734
|
message: "action.yml must be an object"
|
|
@@ -878,4 +875,4 @@ const ValidationLayer = ValidationServiceLive.pipe(Layer.provide(ConfigServiceLi
|
|
|
878
875
|
const BuildLayer = BuildServiceLive.pipe(Layer.provide(ConfigServiceLive));
|
|
879
876
|
const PersistLocalLayer = PersistLocalServiceLive;
|
|
880
877
|
const AppLayer = Layer.mergeAll(ConfigServiceLive, ValidationLayer, BuildLayer, PersistLocalLayer);
|
|
881
|
-
export { ActionYmlMissing, ActionYmlMissingBase, ActionYmlPathError, ActionYmlPathErrorBase, ActionYmlResultSchema, ActionYmlSchemaError, ActionYmlSchemaErrorBase, ActionYmlSyntaxError, ActionYmlSyntaxErrorBase, AppLayer, BuildFailed, BuildFailedBase, BuildLayer, BuildOptionsSchema, BuildResultSchema, BuildRunnerOptionsSchema, BuildService, BundleFailed, BundleFailedBase, BundleResultSchema, BundleStatsSchema,
|
|
878
|
+
export { ActionYmlMissing, ActionYmlMissingBase, ActionYmlPathError, ActionYmlPathErrorBase, ActionYmlResultSchema, ActionYmlSchemaError, ActionYmlSchemaErrorBase, ActionYmlSyntaxError, ActionYmlSyntaxErrorBase, AppLayer, BuildFailed, BuildFailedBase, BuildLayer, BuildOptionsSchema, BuildResultSchema, BuildRunnerOptionsSchema, BuildService, BundleFailed, BundleFailedBase, BundleResultSchema, BundleStatsSchema, CleanError, CleanErrorBase, ConfigInputSchema, ConfigInvalid, ConfigInvalidBase, ConfigLayer, ConfigLoadFailed, ConfigLoadFailedBase, ConfigNotFound, ConfigNotFoundBase, ConfigSchema, ConfigService, DetectEntriesResultSchema, DetectedEntrySchema, EntriesSchema, EntryFileMissing, EntryFileMissingBase, LoadConfigOptionsSchema, MainEntryMissing, MainEntryMissingBase, PersistLocalError, PersistLocalErrorBase, PersistLocalLayer, PersistLocalOptionsSchema, PersistLocalResultSchema, PersistLocalRunnerOptionsSchema, PersistLocalService, ValidateOptionsSchema, ValidationErrorSchema, ValidationFailed, ValidationFailedBase, ValidationLayer, ValidationOptionsSchema, ValidationResultSchema, ValidationService, ValidationWarningSchema, WriteError, WriteErrorBase, defineConfig };
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { Args, Command, Options } from "@effect/cli";
|
|
3
3
|
import { NodeContext, NodeRuntime } from "@effect/platform-node";
|
|
4
|
-
import {
|
|
4
|
+
import { Cause, Console, Effect, Layer, Option } from "effect";
|
|
5
|
+
import { existsSync, mkdirSync, writeFileSync } from "node:fs";
|
|
6
|
+
import { resolve } from "node:path";
|
|
7
|
+
import { PersistLocalService, ValidationService, AppLayer, BuildService, ConfigService, ValidationFailed, BuildFailed } from "../677.js";
|
|
5
8
|
const configOption = Options.file("config").pipe(Options.withAlias("c"), Options.withDescription("Path to configuration file"), Options.optional);
|
|
6
9
|
const quietOption = Options.boolean("quiet").pipe(Options.withAlias("q"), Options.withDescription("Suppress non-error output"), Options.withDefault(false));
|
|
7
10
|
const noValidateOption = Options.boolean("no-validate").pipe(Options.withDescription("Skip validation step"), Options.withDefault(false));
|
|
@@ -71,7 +74,7 @@ const actionNameArg = Args.text({
|
|
|
71
74
|
name: "action-name"
|
|
72
75
|
}).pipe(Args.withDescription("Name of the GitHub Action (also the output directory)"));
|
|
73
76
|
const forceOption = Options.boolean("force").pipe(Options.withAlias("f"), Options.withDescription("Overwrite existing files"), Options.withDefault(false));
|
|
74
|
-
const getPackageVersion = ()=>"0.
|
|
77
|
+
const getPackageVersion = ()=>"0.4.0";
|
|
75
78
|
const generatePackageJson = (name)=>{
|
|
76
79
|
const version = getPackageVersion();
|
|
77
80
|
const pkg = {
|
|
@@ -304,7 +307,7 @@ const rootCommand = Command.make("github-action-builder").pipe(Command.withSubco
|
|
|
304
307
|
]));
|
|
305
308
|
const cli = Command.run(rootCommand, {
|
|
306
309
|
name: "github-action-builder",
|
|
307
|
-
version: "0.
|
|
310
|
+
version: "0.4.0"
|
|
308
311
|
});
|
|
309
312
|
const CliLayer = Layer.merge(AppLayer, NodeContext.layer);
|
|
310
313
|
const main = Effect.suspend(()=>cli(process.argv)).pipe(Effect.provide(CliLayer), Effect.catchAllCause((cause)=>{
|
package/index.d.ts
CHANGED
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
|
|
51
51
|
import { Context } from 'effect';
|
|
52
52
|
import type { Effect } from 'effect';
|
|
53
|
-
import { Equals } from 'effect/Types';
|
|
54
53
|
import { Layer } from 'effect';
|
|
55
54
|
import { Schema } from 'effect';
|
|
56
55
|
import { URL as URL_2 } from 'node:url';
|
|
56
|
+
import { VoidIfEmpty } from 'effect/Types';
|
|
57
57
|
import { YieldableError } from 'effect/Cause';
|
|
58
58
|
|
|
59
59
|
/**
|
|
@@ -79,7 +79,7 @@ export declare class ActionYmlMissing extends ActionYmlMissingBase<{
|
|
|
79
79
|
*
|
|
80
80
|
* @internal
|
|
81
81
|
*/
|
|
82
|
-
export declare const ActionYmlMissingBase: new <A extends Record<string, any> = {}>(args:
|
|
82
|
+
export declare const ActionYmlMissingBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
83
83
|
readonly _tag: "ActionYmlMissing";
|
|
84
84
|
} & Readonly<A>;
|
|
85
85
|
|
|
@@ -114,7 +114,7 @@ export declare class ActionYmlPathError extends ActionYmlPathErrorBase<{
|
|
|
114
114
|
*
|
|
115
115
|
* @internal
|
|
116
116
|
*/
|
|
117
|
-
export declare const ActionYmlPathErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
117
|
+
export declare const ActionYmlPathErrorBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
118
118
|
readonly _tag: "ActionYmlPathError";
|
|
119
119
|
} & Readonly<A>;
|
|
120
120
|
|
|
@@ -187,7 +187,7 @@ export declare class ActionYmlSchemaError extends ActionYmlSchemaErrorBase<{
|
|
|
187
187
|
*
|
|
188
188
|
* @internal
|
|
189
189
|
*/
|
|
190
|
-
export declare const ActionYmlSchemaErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
190
|
+
export declare const ActionYmlSchemaErrorBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
191
191
|
readonly _tag: "ActionYmlSchemaError";
|
|
192
192
|
} & Readonly<A>;
|
|
193
193
|
|
|
@@ -226,7 +226,7 @@ export declare class ActionYmlSyntaxError extends ActionYmlSyntaxErrorBase<{
|
|
|
226
226
|
*
|
|
227
227
|
* @internal
|
|
228
228
|
*/
|
|
229
|
-
export declare const ActionYmlSyntaxErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
229
|
+
export declare const ActionYmlSyntaxErrorBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
230
230
|
readonly _tag: "ActionYmlSyntaxError";
|
|
231
231
|
} & Readonly<A>;
|
|
232
232
|
|
|
@@ -301,7 +301,7 @@ export declare class BuildFailed extends BuildFailedBase<{
|
|
|
301
301
|
*
|
|
302
302
|
* @internal
|
|
303
303
|
*/
|
|
304
|
-
export declare const BuildFailedBase: new <A extends Record<string, any> = {}>(args:
|
|
304
|
+
export declare const BuildFailedBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
305
305
|
readonly _tag: "BuildFailed";
|
|
306
306
|
} & Readonly<A>;
|
|
307
307
|
|
|
@@ -514,7 +514,7 @@ export declare class BundleFailed extends BundleFailedBase<{
|
|
|
514
514
|
*
|
|
515
515
|
* @internal
|
|
516
516
|
*/
|
|
517
|
-
export declare const BundleFailedBase: new <A extends Record<string, any> = {}>(args:
|
|
517
|
+
export declare const BundleFailedBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
518
518
|
readonly _tag: "BundleFailed";
|
|
519
519
|
} & Readonly<A>;
|
|
520
520
|
|
|
@@ -594,7 +594,7 @@ export declare class CleanError extends CleanErrorBase<{
|
|
|
594
594
|
*
|
|
595
595
|
* @internal
|
|
596
596
|
*/
|
|
597
|
-
export declare const CleanErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
597
|
+
export declare const CleanErrorBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
598
598
|
readonly _tag: "CleanError";
|
|
599
599
|
} & Readonly<A>;
|
|
600
600
|
|
|
@@ -688,7 +688,7 @@ export declare class ConfigInvalid extends ConfigInvalidBase<{
|
|
|
688
688
|
*
|
|
689
689
|
* @internal
|
|
690
690
|
*/
|
|
691
|
-
export declare const ConfigInvalidBase: new <A extends Record<string, any> = {}>(args:
|
|
691
|
+
export declare const ConfigInvalidBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
692
692
|
readonly _tag: "ConfigInvalid";
|
|
693
693
|
} & Readonly<A>;
|
|
694
694
|
|
|
@@ -729,7 +729,7 @@ export declare class ConfigLoadFailed extends ConfigLoadFailedBase<{
|
|
|
729
729
|
*
|
|
730
730
|
* @internal
|
|
731
731
|
*/
|
|
732
|
-
export declare const ConfigLoadFailedBase: new <A extends Record<string, any> = {}>(args:
|
|
732
|
+
export declare const ConfigLoadFailedBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
733
733
|
readonly _tag: "ConfigLoadFailed";
|
|
734
734
|
} & Readonly<A>;
|
|
735
735
|
|
|
@@ -760,7 +760,7 @@ export declare class ConfigNotFound extends ConfigNotFoundBase<{
|
|
|
760
760
|
*
|
|
761
761
|
* @internal
|
|
762
762
|
*/
|
|
763
|
-
export declare const ConfigNotFoundBase: new <A extends Record<string, any> = {}>(args:
|
|
763
|
+
export declare const ConfigNotFoundBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
764
764
|
readonly _tag: "ConfigNotFound";
|
|
765
765
|
} & Readonly<A>;
|
|
766
766
|
|
|
@@ -1042,7 +1042,7 @@ export declare class EntryFileMissing extends EntryFileMissingBase<{
|
|
|
1042
1042
|
*
|
|
1043
1043
|
* @internal
|
|
1044
1044
|
*/
|
|
1045
|
-
export declare const EntryFileMissingBase: new <A extends Record<string, any> = {}>(args:
|
|
1045
|
+
export declare const EntryFileMissingBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
1046
1046
|
readonly _tag: "EntryFileMissing";
|
|
1047
1047
|
} & Readonly<A>;
|
|
1048
1048
|
|
|
@@ -1397,7 +1397,7 @@ export declare class MainEntryMissing extends MainEntryMissingBase<{
|
|
|
1397
1397
|
*
|
|
1398
1398
|
* @internal
|
|
1399
1399
|
*/
|
|
1400
|
-
export declare const MainEntryMissingBase: new <A extends Record<string, any> = {}>(args:
|
|
1400
|
+
export declare const MainEntryMissingBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
1401
1401
|
readonly _tag: "MainEntryMissing";
|
|
1402
1402
|
} & Readonly<A>;
|
|
1403
1403
|
|
|
@@ -1435,7 +1435,7 @@ export declare class PersistLocalError extends PersistLocalErrorBase<{
|
|
|
1435
1435
|
*
|
|
1436
1436
|
* @internal
|
|
1437
1437
|
*/
|
|
1438
|
-
export declare const PersistLocalErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
1438
|
+
export declare const PersistLocalErrorBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
1439
1439
|
readonly _tag: "PersistLocalError";
|
|
1440
1440
|
} & Readonly<A>;
|
|
1441
1441
|
|
|
@@ -1634,7 +1634,7 @@ export declare class ValidationFailed extends ValidationFailedBase<{
|
|
|
1634
1634
|
*
|
|
1635
1635
|
* @internal
|
|
1636
1636
|
*/
|
|
1637
|
-
export declare const ValidationFailedBase: new <A extends Record<string, any> = {}>(args:
|
|
1637
|
+
export declare const ValidationFailedBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
1638
1638
|
readonly _tag: "ValidationFailed";
|
|
1639
1639
|
} & Readonly<A>;
|
|
1640
1640
|
|
|
@@ -1837,7 +1837,7 @@ export declare class WriteError extends WriteErrorBase<{
|
|
|
1837
1837
|
*
|
|
1838
1838
|
* @internal
|
|
1839
1839
|
*/
|
|
1840
|
-
export declare const WriteErrorBase: new <A extends Record<string, any> = {}>(args:
|
|
1840
|
+
export declare const WriteErrorBase: new <A extends Record<string, any> = {}>(args: VoidIfEmpty< { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => YieldableError & {
|
|
1841
1841
|
readonly _tag: "WriteError";
|
|
1842
1842
|
} & Readonly<A>;
|
|
1843
1843
|
|
package/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Effect, ManagedRuntime, Schema } from "effect";
|
|
2
|
+
import { AppLayer, BuildService, ConfigService, ValidationService, ValidationResultSchema, BuildResultSchema, PersistLocalResultSchema, defineConfig, PersistLocalService } from "./677.js";
|
|
2
3
|
const GitHubActionBuildResultSchema = Schema.Struct({
|
|
3
4
|
success: Schema.Boolean,
|
|
4
5
|
build: Schema.optional(BuildResultSchema),
|
|
@@ -129,5 +130,5 @@ class GitHubAction {
|
|
|
129
130
|
await this.runtime.dispose();
|
|
130
131
|
}
|
|
131
132
|
}
|
|
132
|
-
export { ActionYmlMissing, ActionYmlMissingBase, ActionYmlPathError, ActionYmlPathErrorBase, ActionYmlResultSchema, ActionYmlSchemaError, ActionYmlSchemaErrorBase, ActionYmlSyntaxError, ActionYmlSyntaxErrorBase, AppLayer, BuildFailed, BuildFailedBase, BuildLayer, BuildOptionsSchema, BuildResultSchema, BuildRunnerOptionsSchema, BuildService, BundleFailed, BundleFailedBase, BundleResultSchema, BundleStatsSchema, CleanError, CleanErrorBase, ConfigInputSchema, ConfigInvalid, ConfigInvalidBase, ConfigLayer, ConfigLoadFailed, ConfigLoadFailedBase, ConfigNotFound, ConfigNotFoundBase, ConfigSchema, ConfigService, DetectEntriesResultSchema, DetectedEntrySchema, EntriesSchema, EntryFileMissing, EntryFileMissingBase, LoadConfigOptionsSchema, MainEntryMissing, MainEntryMissingBase, PersistLocalError, PersistLocalErrorBase, PersistLocalLayer, PersistLocalOptionsSchema, PersistLocalResultSchema, PersistLocalRunnerOptionsSchema, PersistLocalService, ValidateOptionsSchema, ValidationErrorSchema, ValidationFailed, ValidationFailedBase, ValidationLayer, ValidationOptionsSchema, ValidationResultSchema, ValidationService, ValidationWarningSchema, WriteError, WriteErrorBase, defineConfig } from "./
|
|
133
|
+
export { ActionYmlMissing, ActionYmlMissingBase, ActionYmlPathError, ActionYmlPathErrorBase, ActionYmlResultSchema, ActionYmlSchemaError, ActionYmlSchemaErrorBase, ActionYmlSyntaxError, ActionYmlSyntaxErrorBase, AppLayer, BuildFailed, BuildFailedBase, BuildLayer, BuildOptionsSchema, BuildResultSchema, BuildRunnerOptionsSchema, BuildService, BundleFailed, BundleFailedBase, BundleResultSchema, BundleStatsSchema, CleanError, CleanErrorBase, ConfigInputSchema, ConfigInvalid, ConfigInvalidBase, ConfigLayer, ConfigLoadFailed, ConfigLoadFailedBase, ConfigNotFound, ConfigNotFoundBase, ConfigSchema, ConfigService, DetectEntriesResultSchema, DetectedEntrySchema, EntriesSchema, EntryFileMissing, EntryFileMissingBase, LoadConfigOptionsSchema, MainEntryMissing, MainEntryMissingBase, PersistLocalError, PersistLocalErrorBase, PersistLocalLayer, PersistLocalOptionsSchema, PersistLocalResultSchema, PersistLocalRunnerOptionsSchema, PersistLocalService, ValidateOptionsSchema, ValidationErrorSchema, ValidationFailed, ValidationFailedBase, ValidationLayer, ValidationOptionsSchema, ValidationResultSchema, ValidationService, ValidationWarningSchema, WriteError, WriteErrorBase, defineConfig } from "./677.js";
|
|
133
134
|
export { GitHubAction, GitHubActionBuildResultSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/github-action-builder",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
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": [
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"github-action-builder": "./bin/github-action-builder.js"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@effect/cli": "^0.
|
|
47
|
-
"@effect/platform": "^0.
|
|
48
|
-
"@effect/platform-node": "^0.
|
|
49
|
-
"@effect/printer": "^0.
|
|
50
|
-
"@effect/printer-ansi": "^0.
|
|
51
|
-
"@effect/typeclass": "^0.
|
|
46
|
+
"@effect/cli": "^0.74.0",
|
|
47
|
+
"@effect/platform": "^0.95.0",
|
|
48
|
+
"@effect/platform-node": "^0.105.0",
|
|
49
|
+
"@effect/printer": "^0.48.0",
|
|
50
|
+
"@effect/printer-ansi": "^0.48.0",
|
|
51
|
+
"@effect/typeclass": "^0.39.0",
|
|
52
52
|
"@vercel/ncc": "^0.38.4",
|
|
53
|
-
"effect": "^3.
|
|
53
|
+
"effect": "^3.20.0",
|
|
54
54
|
"picocolors": "^1.1.1",
|
|
55
|
-
"yaml": "^
|
|
55
|
+
"yaml-effect": "^0.1.5"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"@types/node": "^25.2.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"!github-action-builder.api.json",
|
|
75
75
|
"!tsconfig.json",
|
|
76
76
|
"!tsdoc.json",
|
|
77
|
-
"
|
|
77
|
+
"677.js",
|
|
78
78
|
"LICENSE",
|
|
79
79
|
"README.md",
|
|
80
80
|
"bin/github-action-builder.js",
|