2017-11-29 10:47:04 +00:00
|
|
|
#!/usr/bin/env bash
|
2017-05-24 00:20:56 +00:00
|
|
|
|
2017-07-14 05:50:05 +00:00
|
|
|
set -eu -o pipefail
|
2017-06-15 17:10:28 +00:00
|
|
|
|
2017-06-22 23:47:53 +00:00
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
2017-06-30 17:08:33 +00:00
|
|
|
readonly parentDir=$(dirname $thisDir)
|
2017-05-24 00:20:56 +00:00
|
|
|
|
2017-08-03 22:18:55 +00:00
|
|
|
# Track payload size functions
|
|
|
|
|
source ../scripts/ci/payload-size.sh
|
2017-05-24 00:20:56 +00:00
|
|
|
|
2017-11-18 20:26:33 +00:00
|
|
|
trackPayloadSize "aio" "dist/*.bundle.js" true true "${thisDir}/_payload-limits.json"
|
2017-05-24 00:20:56 +00:00
|
|
|
|