2020-04-30 18:52:54 +07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
# Builds vscode into lib/vscode/out-vscode.
|
|
|
|
|
|
|
|
# MINIFY controls whether a minified version of vscode is built.
|
|
|
|
MINIFY=${MINIFY-true}
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "${0}")/../.."
|
|
|
|
cd lib/vscode
|
|
|
|
|
2021-04-29 01:25:56 +07:00
|
|
|
yarn gulp compile-build compile-extensions-build
|
2020-04-30 18:52:54 +07:00
|
|
|
yarn gulp optimize --gulpfile ./coder.js
|
|
|
|
if [[ $MINIFY ]]; then
|
|
|
|
yarn gulp minify --gulpfile ./coder.js
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|