mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
2189c5b663
Also adds a step in the build to run npm install in the electron subfolder
26 lines
534 B
Bash
Executable File
26 lines
534 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p .package/dist/src/ThirdParty || true
|
|
mkdir -p .package/src/ThirdParty || true
|
|
mkdir -p .package/node_modules || true
|
|
|
|
cp index.html .package
|
|
cp -r electron/* .package
|
|
cp -r dist/ext .package/dist
|
|
|
|
# The css files
|
|
cp dist/vendor.css .package/dist
|
|
cp main.css .package/main.css
|
|
|
|
# The js files.
|
|
cp dist/vendor.bundle.js .package/dist/vendor.bundle.js
|
|
cp main.bundle.js .package/main.bundle.js
|
|
|
|
# Install electron sub-dependencies
|
|
cd electron
|
|
npm install
|
|
cd ..
|
|
|
|
# And finally build the app.
|
|
npm run electron:packager
|