mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
13 lines
275 B
Bash
Executable file
13 lines
275 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
readonly parentDir=$(dirname $thisDir)
|
|
|
|
# Track payload size functions
|
|
source ../scripts/ci/payload-size.sh
|
|
source ${thisDir}/_payload-limits.sh
|
|
|
|
trackPayloadSize "aio" "dist/*.bundle.js" true true
|
|
|