You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 previously defined.
module.exports=[{entry: {client: ['./client.ts']},// will never fire..plugins: [newWebpackShellPlugin({onBuildEnd: ['echo "fin client"']})],
...
},{entry: {server: ['./server.ts']},// will fire when client is finishedplugins: [newWebpackShellPlugin({onBuildEnd: ['echo "fin server"']})],
...
}];
The text was updated successfully, but these errors were encountered:
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 previously defined.
node 8.7.0
webpack 3.8.1
webpack-shell-plugin 0.5.0
The text was updated successfully, but these errors were encountered: