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
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:
webpackConfig.plugins.push(new WebpackShellPlugin({
onBuildStart: ['./node_modules/.bin/bump prerelease'], // need to bump version first before files copied etc
onBuildExit: ['echo "test"']
}));
Results:
You can see in the screenshot below, the "test" message is definitely emitted before webpack is done
The text was updated successfully, but these errors were encountered:
mikeerickson
changed the title
onBuildExit
onBuildExit fires before webpack is actually done
Jan 20, 2017
I have a script set to run when
webpack
is all done (onBuildExit) but it seems to fire beforewebpack
is actually done (I have also tried onBuildEnd)My script:
Results:
You can see in the screenshot below, the "test" message is definitely emitted before
webpack
is doneThe text was updated successfully, but these errors were encountered: