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
		
			
				
	
	
		
			17 lines
		
	
	
		
			459 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			459 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@npm//@bazel/typescript:index.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "pr",
 | |
|     srcs = ["cli.ts"],
 | |
|     module_name = "@angular/dev-infra-private/pr",
 | |
|     visibility = ["//dev-infra:__subpackages__"],
 | |
|     deps = [
 | |
|         "//dev-infra/pr/check-target-branches",
 | |
|         "//dev-infra/pr/checkout",
 | |
|         "//dev-infra/pr/discover-new-conflicts",
 | |
|         "//dev-infra/pr/merge",
 | |
|         "//dev-infra/pr/rebase",
 | |
|         "@npm//@types/yargs",
 | |
|     ],
 | |
| )
 |