#!/usr/bin/env node import { Command } from 'commander' import runner from '../lib/runner/runner' const program = new Command() program .option('init', 'initialize 8 Bit Env') .option('save', 'save & encrypt your env files') .option('update', 'decrypt your env files for modification') .option( 'create ', 'create a new env file where you can store variables' ) .option( 'expose ', 'decrypt a specified env file to a specific location' ) program.parse(process.argv) runner(program.args)