UNPKG

envilder

Version:

A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth

12 lines 388 B
#!/usr/bin/env node /** * Entry point for the CLI application * This file is executed when the CLI runs */ import { main } from './Cli.js'; main().catch((error) => { console.error('🚨 Uh-oh! Looks like Mario fell into the wrong pipe! 🍄💥'); console.error(error instanceof Error ? error.message : String(error)); process.exit(1); }); //# sourceMappingURL=Index.js.map