Skip to content

NuglifyJsOptions

type NuglifyJsOptions =
    {
        ShortenNames: bool
        KeepLicenceComments: bool
        MinifyWhileWatching: bool
    }
AssemblyNacara.Plugin.Assets.Nuglify

Options for minifying JavaScript.

Fields

ShortenNames: bool

Shorten the names of local variables.

Locals only. Anything reachable from outside - a custom element, a function on window - keeps the name it was written with, or nothing could call it.

KeepLicenceComments: bool

Keep comments marked as important, the /*! … */ kind.

On: that is where a licence lives.

MinifyWhileWatching: bool

Minify while watching too.