Moves the `renderer_to_renderer2` migration google3 tslint rule into the new `google3` directory. This is done for consistency as we recently moved all google3 migration rules into a new `google3` folder (see: f69e4e6f770907f6811de88e52692df1a3d2f43e). PR Close #31817
		
			
				
	
	
		
			19 lines
		
	
	
		
			536 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			536 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "renderer-to-renderer2",
 | |
|     srcs = glob(["**/*.ts"]),
 | |
|     tsconfig = "//packages/core/schematics:tsconfig.json",
 | |
|     visibility = [
 | |
|         "//packages/core/schematics:__pkg__",
 | |
|         "//packages/core/schematics/migrations/google3:__pkg__",
 | |
|         "//packages/core/schematics/test:__pkg__",
 | |
|     ],
 | |
|     deps = [
 | |
|         "//packages/core/schematics/utils",
 | |
|         "@npm//@angular-devkit/schematics",
 | |
|         "@npm//@types/node",
 | |
|         "@npm//typescript",
 | |
|     ],
 | |
| )
 |