blob: 49fb05264f080dcac0a7f8f321b02d25a24d39b0 [file] [log] [blame]
#!/usr/bin/env bash
set -eu -o pipefail
# -e: exits if a command fails
# -u: errors if an variable is referenced before being set
# -o pipefail: causes a pipeline to produce a failure return code if any command errors
# Define packages so that dependencies come first as locally
# they will be built in the order provided
export readonly PACKAGES=( jasmine typescript karma labs )