From 1d7aa0a92cb178c625898238034d169d94ea6ef6 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 22 Jul 2019 17:00:45 +0200 Subject: [PATCH] build: fix size-tracking tests not running (#31779) Currently when someone wants to explicitly run the size-tracking tool tests, the size-tracking tool never runs because of recent changes for the rules_nodejs update broke the `entry_point` attribute. PR Close #31779 --- tools/size-tracking/index.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/size-tracking/index.bzl b/tools/size-tracking/index.bzl index 27ea2fcaa1..a2836cfc09 100644 --- a/tools/size-tracking/index.bzl +++ b/tools/size-tracking/index.bzl @@ -25,7 +25,7 @@ def js_size_tracking_test( "@npm//source-map", "@npm//chalk", ] - entry_point = ":index.ts" + entry_point = "//tools/size-tracking:index.ts" nodejs_test( name = name,