Create a command in the `ng-dev` toolset that allows user's to check what branches a PR will merge into based on its targeting. PR Close #39504
		
			
				
	
	
		
			14 lines
		
	
	
		
			368 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			368 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@npm//@bazel/typescript:index.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "check-target-branches",
 | |
|     srcs = glob(["*.ts"]),
 | |
|     module_name = "@angular/dev-infra-private/pr/check-target-branches",
 | |
|     visibility = ["//dev-infra:__subpackages__"],
 | |
|     deps = [
 | |
|         "//dev-infra/pr/merge",
 | |
|         "//dev-infra/utils",
 | |
|         "@npm//@types/yargs",
 | |
|     ],
 | |
| )
 |