mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-10-30 14:17:55 +00:00
23 lines
257 B
Bash
Executable File
23 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Remove ./renderer/dist if it exists
|
|
rm -rf ./renderer/dist
|
|
|
|
# Remove ./main/dist if it exists
|
|
rm -rf ./main/dist
|
|
|
|
cd ./renderer
|
|
|
|
npm install
|
|
npm run make-index-files
|
|
npm run build
|
|
cd ..
|
|
|
|
cd ./main
|
|
|
|
npm install
|
|
npm run build
|
|
npm run package
|
|
|
|
|