dotenv

This plugin is always enabled.

This plugin adds argument parsing for the dotenv binary. Configuration:

fromArgs: (parsed , args ) => {

if (parsed._[0]) return argsFrom(args, parsed._[0]);

if (!parsed['--'] || parsed['--'].length === 0) return [];

const script = parsed['--'].map(arg => (arg.includes(' ') ? `"${arg}"` : arg)).join(' ');

return [script];

}

The configuration was generated from source code. Also see Script Parser.

Generated from source

Section titled “Generated from source”

This page was generated from the dotenv plugin source code.