Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: simplify api golden target names #14973

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/public_api_guard/generate-guard-tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def generate_test_targets(golden_files):

# Create the test rule that compares the build output with the golden file.
ts_api_guardian_test(
name = "%s_%s_api" % (package_name, entry_point),
name = "%s_api" % golden_file,
actual = "angular_material/src/%s/index.d.ts" % entry_point_path,
data = [golden_file] + [
"//src/%s" % (entry_point_path),
Expand Down