webpack-shell-plugin icon indicating copy to clipboard operation
webpack-shell-plugin copied to clipboard

Run shell commands either before or after webpack builds

Results 35 webpack-shell-plugin issues
Sort by recently updated
recently updated
newest added

## Issue `console.log` output is being added to the generated `stats.json` file via `webpack --profile > stats.json`. ## Solution Add `quiet` option.

This is how my Webpack config files looks like. `const path = require('path'); const webpack = require('webpack'); const nodeExternals = require('webpack-node-externals'); const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); const NodemonPlugin = require('nodemon-webpack-plugin'); const...

Hi , your package is help full i've a question. How to run command like this? php artisan vendor:publish --provider="Nero\Ecomm\Providers\EcommServiceProvider" --tag="nero_public" Simple command is working like this. php artisan vendor:publish

When using `webpack-shell-plugin`, the same `options` object appears to be reused for different instances. As a result, only one instance is usable at a time. This is problematic when [using...

If you export more than one configuration, onBuildEnd is fired after the first configuration is processed even if that configuration uses no plugins. Also the last onBuildEnd definition overwrites all...

I have a script set to run when `webpack` is all done (onBuildExit) but it seems to fire before `webpack` is actually done (I have also tried onBuildEnd) My script:...

We have a process that writes a value to a file which is then required by the actual build process like this: ```sh git describe --tags HEAD >.app-version || date...