mirror of
https://github.com/c9fe/22120.git
synced 2024-11-15 15:32:29 +01:00
11 lines
562 B
Bash
11 lines
562 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
unset npm_config_prefix
|
||
|
source $HOME/.nvm/nvm.sh
|
||
|
. $HOME/.profile
|
||
|
nvm install v14.15.3
|
||
|
nvm use v14.15.3
|
||
|
|
||
|
npx webpack
|
||
|
npx nexe -t windows -i 22120.js -r \"./?.22120.js\" -r \"./public/*\" && npx nexe -t linux-x64 -o 22120.nix -i 22120.js -r \"./?.22120.js\" -r \"./public/*\" && npx nexe -t macos-x64 -o 22120.mac -i 22120.js -r \"./?.22120.js\" -r \"./public/*\" && npx nexe -t windows-x32 -o 22120.win32.exe -i 22120.js -r \"./?.22120.js\" -r \"./public/*\" && npx nexe -t linux-x32 -o 22120.nix32 -i 22120.js -r \"./?.22120.js\" -r \"./public/*\"
|