From a4e06b685b9671eaa6b8ce589e13c85945cc7eba Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 12 Apr 2018 10:22:58 -0700 Subject: [PATCH] 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 --- scripts/release/publish-next | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release/publish-next b/scripts/release/publish-next index 10486c8412..6322bbed5f 100755 --- a/scripts/release/publish-next +++ b/scripts/release/publish-next @@ -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