Migrate the release tool in ng-dev to use new logging system rather than directly calling console.* to create a better experience for users. PR Close #37232
		
			
				
	
	
		
			19 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@npm_bazel_typescript//:index.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "release",
 | |
|     srcs = glob([
 | |
|         "*.ts",
 | |
|     ]),
 | |
|     module_name = "@angular/dev-infra-private/release",
 | |
|     visibility = ["//dev-infra:__subpackages__"],
 | |
|     deps = [
 | |
|         "//dev-infra/utils",
 | |
|         "@npm//@types/node",
 | |
|         "@npm//@types/shelljs",
 | |
|         "@npm//@types/yargs",
 | |
|         "@npm//shelljs",
 | |
|         "@npm//yargs",
 | |
|     ],
 | |
| )
 |