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.
14 lines
350 B
14 lines
350 B
7 years ago
|
#!/bin/bash
|
||
7 years ago
|
|
||
|
set -e
|
||
|
|
||
7 years ago
|
GIT_REVISION=$(git rev-parse HEAD)
|
||
|
export GIT_REVISION
|
||
7 years ago
|
export SENTRY_URL=https://db8f5b9b021048d4a401f045371701cb@sentry.io/274561
|
||
7 years ago
|
export JOBS=max
|
||
7 years ago
|
|
||
|
rm -rf ./node_modules/.cache dist
|
||
7 years ago
|
yarn
|
||
7 years ago
|
NODE_ENV=production yarn run webpack-cli --mode production --config webpack/internals.config.js
|
||
|
NODE_ENV=production yarn run electron-webpack
|