/webpack-delay-plugin

A webpack plugin to delay the compilation.

Primary LanguageJavaScriptMIT LicenseMIT

Webpack Delay Plugin Build Status Code Climate

Options and Usage

All Options are optional, the default values are as followed:

const DelayPlugin = require('webpack-delay-plugin')

/* webpack config object */
module.exports = {
    ...
    plugins: [
        new DelayPlugin({
            delay: 3000, // delay in ms
            lifecycleEvents: ['run', 'watch-run'], // array of strings, which must match webpack lifecycle events
            verbose: false // enable debug logging
        })
    ]
}