mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This fixes an issue introduced by 4f0cae0676 which removed firebase from the root node_modules.
PR Close #23328
15 lines
360 B
Bash
Executable file
15 lines
360 B
Bash
Executable file
#!/usr/bin/env 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
|
|
|
|
# Provide node_modules from aio
|
|
NODE_MODULES_BIN=$PROJECT_ROOT/aio/node_modules/.bin/
|
|
|
|
trackPayloadSize "aio" "dist/*.js" true true "${thisDir}/_payload-limits.json"
|
|
|