Previously we used gulp to run our formatter, currently clang-format, across our repository. This new tool within ng-dev allows us to migrate away from our gulp based solution as our gulp solution had issue with memory pressure and would cause OOM errors with too large of change sets. PR Close #36726
		
			
				
	
	
		
			20 lines
		
	
	
		
			443 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			443 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@npm_bazel_typescript//:index.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "utils",
 | |
|     srcs = [
 | |
|         "config.ts",
 | |
|         "repo-files.ts",
 | |
|     ],
 | |
|     module_name = "@angular/dev-infra-private/utils",
 | |
|     visibility = ["//dev-infra:__subpackages__"],
 | |
|     deps = [
 | |
|         "@npm//@types/json5",
 | |
|         "@npm//@types/node",
 | |
|         "@npm//@types/shelljs",
 | |
|         "@npm//json5",
 | |
|         "@npm//shelljs",
 | |
|         "@npm//tslib",
 | |
|     ],
 | |
| )
 |