This release is a pre-release — the latest non-prerelease version of @fathym/eac-install is 0.0.74. Jump to this version
@fathym/eac-install@0.0.88-integrationBuilt and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score35%•It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




Downloads47/wk
•Publisheda month ago (0.0.88-integration)
import { colors, parseArgs } from "./src/install.deps.ts"; import { Command } from "./src/commands/Command.ts"; import { HelpCommand } from "./src/commands/HelpCommand.ts"; import { InstallCommand } from "./src/commands/InstallCommand.ts"; export const fathymGreen: colors.Rgb = { r: 74, g: 145, b: 142 }; // TODO(mcgear): Check that minimum deno version is met export type EaCRuntimeInstallerFlags = { dir?: string; force?: boolean; help?: boolean; preact?: boolean; tailwind?: boolean; template?: string; }; const flags: EaCRuntimeInstallerFlags = parseArgs(Deno.args, { boolean: ["force", "help", "preact", "tailwind"], string: ["dir", "template"], default: { force: undefined, preact: true, tailwind: true, template: "core", }, alias: { force: "f", help: "h", }, }); console.log(); console.log(colors.bgRgb24(" 🐙 EaC Runtime Installer ", fathymGreen)); console.log(); let command: Command | undefined; if (flags.help) { command = new HelpCommand(); } else { command = new InstallCommand(flags); } if (command) { await command.Run(); } Deno.exit(0);