Files
paperclip-wallet/build_win.bat
Taegus d7df361714 + linux binaries
* use paths based on OS
* minimal install
2018-12-22 16:36:49 +01:00

11 lines
271 B
Batchfile

@ECHO OFF
ECHO Clean the cache first
call npm cache clean --force
ECHO Prune the project for production
call npm prune --production
ECHO delete node modules
rmdir node_modules /S /Q
ECHO Install all dependencies
call npm install
ECHO Make a distribution
call npm run dist