From 62b2058cd8c027d6d7744496db062d0115fad04d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Margus=20Kevin=20S=C3=BCnter?= Date: Fri, 7 May 2021 00:39:14 +0300 Subject: [PATCH] fix(assetsbundler): fix webpack dev server not beeing killed by CTRL+C in Windows Killing server with CTRL-C in dev mode in Windows leaves webpack-dev-server running on port 8080 and never releases it fix https://github.com/adonisjs/core/issues/2562 --- src/AssetsBundler/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AssetsBundler/index.ts b/src/AssetsBundler/index.ts index 036932b..f14e057 100644 --- a/src/AssetsBundler/index.ts +++ b/src/AssetsBundler/index.ts @@ -32,6 +32,7 @@ export class AssetsBundler extends Emittery { stdio: 'pipe' as const, localDir: this.projectRoot, cwd: this.projectRoot, + windowsHide: false, env: { FORCE_COLOR: 'true', ...this.env,