Using .env Variables in package.json Scripts
Ever run into a CLI that requires you to pass values that you already have stored in your .env file?
I'm embarrassed to say I've written a script in the past that just was a wrapper around a CLI command just so I could call require('dotenv').config() before it.