From 2152e0b1dc9a72aae4b12b977596a064a0768680 Mon Sep 17 00:00:00 2001 From: Harry Hopkinson Date: Sun, 11 Jun 2023 13:14:18 +0100 Subject: [PATCH] Fix main-bundle not being created when running debugger. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 96edbaa5..69967b69 100644 --- a/package.json +++ b/package.json @@ -235,7 +235,7 @@ "compile:test": "tsc -p ./tsconfig.test.json", "compile:web": "webpack", "compile": "npm run compile:panel && npm run compile:extension && npm run compile:test && npm run compile:web", - "watch": "tsc -watch -p ./tsconfig.extension.json", + "watch": "webpack && tsc -watch -p ./tsconfig.extension.json", "watch:web": "webpack --watch", "pretest": "npm run compile && npm run lint", "lint": "eslint src --ext ts && prettier --check src",