From 71a321cc2831345881c87f1b768c713dac07b3e0 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 1 Feb 2021 11:25:15 +0100 Subject: [PATCH] Enable webpack watch progress Without that, `npm run watch` is entirely silent after the first build, and does not give any feedback when a build starts, and even more importantly, when it's done. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b80df38..1cd790c 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "author": "", "license": "LGPL-2.1", "scripts": { - "watch": "webpack --watch", + "watch": "webpack --watch --progress", "build": "webpack", "eslint": "eslint --ext .js --ext .jsx src/", "eslint:fix": "eslint --fix --ext .js --ext .jsx src/"