Interface Options

interface Options {
    cwd?: string;
    dest?: string;
    gitAdd?: boolean;
    ignoreRegex?: string | RegExp;
    src?: string;
}

Properties

cwd?: string

current working directory

Defult Value

process.cwd()

dest?: string

output file name

Defult Value

.env.sample

gitAdd?: boolean

whether to check-in to git or not

Defult Value

false

ignoreRegex?: string | RegExp

regex of lines to ignore

Defult Value

/^#/

src?: string

input file name

Defult Value

.env

Generated using TypeDoc