interface NukeOptionsOnly {
    dontNukeIn?: (string | RegExp)[];
    nukeGlobs?: string[];
    nukeList?: string[];
    nukeMore?: string[];
    nukeMoreGlobs?: string[];
    skipNodeModules?: boolean;
}

Properties

dontNukeIn?: (string | RegExp)[]

If it shouldn't nuke a specific package, add them here.

[]
nukeGlobs?: string[]

Globs to also remove.

If you only wish to extend or remove parts of it use the nukeMoreGlobs and dontNuke fields and leave this one alone.

DEFAULT_NUKE_GLOBS
nukeList?: string[]

A list of relative paths this script will remove in every package in the workspace. If you define this, the default are not applied.

If you only wish to extend or remove parts of it use the nukeMore and dontNuke fields and leave this one alone.

DEFAULT_NUKE_LIST
nukeMore?: string[]

These will be nuked too. Same role as nukeList but defining this won't get rid of the built in nukelist

[]
nukeMoreGlobs?: string[]

Additional globs to nuke if you don't want to overwrite the default ones

undefined
skipNodeModules?: boolean

Don't remove node_modules directories but try to clean them up

false