From d26b916890a1d14395b290a66289414e8e12d820 Mon Sep 17 00:00:00 2001 From: Mari Date: Mon, 14 Feb 2022 13:04:43 -0500 Subject: [PATCH] Move concurrently-all-nexes command to build-nexe and have build use that instead --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c1655fd..bada433 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,9 @@ "bin": "indexer.mjs", "scripts": { "start": "node build/smva-indexer-bundle.js", - "build": "npm run build-rollup && concurrently -i -n Win,Mac,Lin -c blue,white,yellow \"npm run build-win-nexe\" \"npm run build-mac-nexe\" \"npm run build-lin-nexe\"", + "build": "npm run build-rollup && npm run build-nexe", "build-rollup": "rollup -c rollup.config.js -f commonjs indexer.mjs", + "build-nexe": "concurrently -i -n Win,Mac,Lin -c blue,white,yellow \"npm run build-win-nexe\" \"npm run build-mac-nexe\" \"npm run build-lin-nexe\"", "build-win-nexe": "nexe -t windows-x86-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-win.exe --verbose", "build-mac-nexe": "nexe -t mac-x64-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-macos --verbose", "build-lin-nexe": "nexe -t linux-x64-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-linux --verbose",