From cfd7c98b23588e796312b11df2d82976e9d4e66d Mon Sep 17 00:00:00 2001 From: Oliver Paraskos Date: Thu, 13 Oct 2022 09:31:24 +0100 Subject: [PATCH] fix(missing): CI should include webview bundle to js files arent missing in disrtibuted extension --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d4cced7..3e35999 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "scripts": { "vscode:prepublish": "npm run compile", "build": "npm run compile", - "compile": "tsc -b", + "compile": "concurrently 'tsc -b' 'cd webviews && npm run compile'", "watch": "tsc -b -w", "lint": "eslint ./client/src ./server/src ./webviews/src --ext .ts,.tsx", "postinstall": "cd client && npm install && cd ../server && npm install && cd ../webviews && npm install && cd ..",