UNPKG

envilder

Version:

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

12 lines 389 B
#!/usr/bin/env node /** * Entry point for the GitHub Action * This file is executed when the action runs */ import { main } from './Gha.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