15 lines
178 B
Bash
Executable File
15 lines
178 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn --frozen-lockfile
|
|
yarn vscode
|
|
yarn build
|
|
yarn build:vscode
|
|
yarn release
|
|
}
|
|
|
|
main "$@"
|