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",