build: exclude aio from the release bazel query

if we don't exclude it, bazel find random stuff in aio/node_modules that causes issues
This commit is contained in:
Igor Minar 2018-04-12 10:22:58 -07:00
parent 01975ff021
commit a4e06b685b
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ set -u -e -o pipefail
# Publish them to npm (tagged next)
# query for all npm packages to be released as part of the framework release
NPM_PACKAGE_LABELS=`bazel query --output=label 'attr("tags", "\[.*release-with-framework.*\]", //packages/...) intersect kind(".*_package", //...)'`
NPM_PACKAGE_LABELS=`bazel query --output=label 'attr("tags", "\[.*release-with-framework.*\]", //packages/...) intersect kind(".*_package", //packages/...)'`
# build all npm packages in parallel
bazel build $NPM_PACKAGE_LABELS
# publish all packages in sequence to make it easier to spot any errors or warnings