mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-05-03 07:50:46 +00:00
21 lines
255 B
Bash
Executable File
21 lines
255 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
|