From cd14180b63b4da28583bbb6983acf57befceb625 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 14 Jun 2023 08:55:55 +0200 Subject: [PATCH] chore: fix windows build --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fb49c0701..83035fb03 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "start-prod": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod$MULTI electron .", "build-everything": "yarn clean && yarn protobuf && yarn update-git-info && yarn sass && tsc && yarn build:workers", "build-everything:watch": "yarn clean && yarn protobuf && yarn update-git-info && yarn sass && yarn build:workers && tsc -w", - "build:workers": "yarn concurrently 'yarn worker:utils' 'yarn worker:libsession'", + "build:workers": "yarn worker:utils && yarn worker:libsession", "watch": "yarn clean && yarn protobuf && yarn update-git-info && concurrently 'yarn build-everything:watch'", "protobuf": "pbjs --target static-module --wrap commonjs --out ts/protobuf/compiled.js protos/*.proto && pbts --out ts/protobuf/compiled.d.ts ts/protobuf/compiled.js --force-long", "sass": "rimraf 'stylesheets/dist/' && webpack --config=./sass.config.js",