You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
337 B
13 lines
337 B
7 years ago
|
#/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export GIT_REVISION=`git rev-parse HEAD`
|
||
|
export SENTRY_URL=https://db8f5b9b021048d4a401f045371701cb@sentry.io/274561
|
||
|
|
||
|
rm -rf ./node_modules/.cache dist
|
||
|
yarn
|
||
|
rm -rf dist &&
|
||
|
NODE_ENV=production yarn run webpack-cli --mode production --config webpack/internals.config.js &&
|
||
|
NODE_ENV=production yarn run electron-webpack
|