Moves all google3 migration tslint rules into a single directory. This makes it easier to wire up multiple migration rules in google3 without having to update the rule directories each time a new migration is available. PR Close #30956
		
			
				
	
	
		
			23 lines
		
	
	
		
			655 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			655 B
		
	
	
	
		
			Python
		
	
	
	
	
	
load("//tools:defaults.bzl", "ts_library")
 | 
						|
 | 
						|
ts_library(
 | 
						|
    name = "static-queries",
 | 
						|
    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/compiler",
 | 
						|
        "//packages/compiler-cli",
 | 
						|
        "//packages/core/schematics/utils",
 | 
						|
        "@npm//@angular-devkit/core",
 | 
						|
        "@npm//@angular-devkit/schematics",
 | 
						|
        "@npm//@types/node",
 | 
						|
        "@npm//rxjs",
 | 
						|
        "@npm//typescript",
 | 
						|
    ],
 | 
						|
)
 |