Move concurrently-all-nexes command to build-nexe and have build use that instead

main
Mari 3 years ago
parent 75d01dc6ad
commit d26b916890
  1. 3
      package.json

@ -5,8 +5,9 @@
"bin": "indexer.mjs", "bin": "indexer.mjs",
"scripts": { "scripts": {
"start": "node build/smva-indexer-bundle.js", "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-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-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-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", "build-lin-nexe": "nexe -t linux-x64-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-linux --verbose",

Loading…
Cancel
Save