0.0.1 • Published 6 years ago

webpack-run-after-build-plugin v0.0.1

Weekly downloads
1,773
License
ISC
Repository
-
Last release
6 years ago

webpack-run-after-build-plugin

Webpack plugin for doing anything after build is complete

Usage

module.exports = {
    ...,
    plugins = [
        // ... Your plugins,
        new RunAfterBuildPlugin(() => {
            console.log('Files are ready to use!');
            doSomeThings();
        })
    ]
0.0.1

6 years ago