13 lines
155 B
Bash
Executable File
13 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
yarn release:static
|
|
yarn test:static-release
|
|
yarn package
|
|
}
|
|
|
|
main "$@"
|