This commit adds the ivy-local tag to //packages/router. Since the router depends on //packages/upgrade, it makes that package compatible with ngtsc as well. PR Close #24862
		
			
				
	
	
		
			42 lines
		
	
	
		
			882 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			882 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| load("//tools:defaults.bzl", "ng_module", "ng_package")
 | |
| 
 | |
| ng_module(
 | |
|     name = "router",
 | |
|     srcs = glob(
 | |
|         [
 | |
|             "*.ts",
 | |
|             "src/**/*.ts",
 | |
|         ],
 | |
|     ),
 | |
|     module_name = "@angular/router",
 | |
|     deps = [
 | |
|         "//packages/common",
 | |
|         "//packages/core",
 | |
|         "//packages/platform-browser",
 | |
|         "//packages/upgrade/static",
 | |
|         "@rxjs",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| ng_package(
 | |
|     name = "npm_package",
 | |
|     srcs = [
 | |
|         "package.json",
 | |
|         "//packages/router/testing:package.json",
 | |
|         "//packages/router/upgrade:package.json",
 | |
|     ],
 | |
|     entry_point = "packages/router/index.js",
 | |
|     tags = [
 | |
|         "ivy-jit",
 | |
|         "ivy-local",
 | |
|         "release-with-framework",
 | |
|     ],
 | |
|     deps = [
 | |
|         ":router",
 | |
|         "//packages/router/testing",
 | |
|         "//packages/router/upgrade",
 | |
|     ],
 | |
| )
 |