ci(aio): rename limits file and address comments

This commit is contained in:
Yuan Gao
2017-06-15 10:10:28 -07:00
committed by Matias Niemelä
parent ca970f5ee5
commit 2e55857c82
2 changed files with 5 additions and 4 deletions

8
aio/scripts/_payload-limits.sh Executable file
View File

@ -0,0 +1,8 @@
set -u -e -o pipefail
declare -A limitUncompressed
limitUncompressed=(["0"]=16000 ["inline"]=1600 ["main"]=360000 ["polyfills"]=40000 ["vendor"]=520000)
declare -A limitGzip7
limitGzip7=(["0"]=7000 ["inline"]=1000 ["main"]=60000 ["polyfills"]=13000 ["vendor"]=120000)
declare -A limitGzip9
limitGzip9=(["0"]=7000 ["inline"]=1000 ["main"]=60000 ["polyfills"]=13000 ["vendor"]=120000)