Update babel en disable ES5 builds on dev (#4876)

This commit is contained in:
Bram Kragten
2020-02-15 01:09:21 +01:00
committed by GitHub
parent 7d37dc6cde
commit 2d018fff6c
4 changed files with 667 additions and 577 deletions

View File

@@ -57,7 +57,7 @@ const handler = (done) => (err, stats) => {
gulp.task("webpack-watch-app", () => {
// we are not calling done, so this command will run forever
webpack(bothBuilds(createAppConfig, { isProdBuild: false })).watch(
webpack(createAppConfig({ isProdBuild: false, latestBuild: true })).watch(
{},
handler()
);