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