We now create npm packages to cover all the public api assertions in tools/public_api_guard. We no longer depend on ts-api-guardian from npm - it is now stale since the repository was archived. There is no longer a gulp task to enforce or accept the public API, this is in CircleCI as part of running all bazel test targets. PR Close #22639
		
			
				
	
	
		
			14 lines
		
	
	
		
			291 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			291 B
		
	
	
	
		
			Python
		
	
	
	
	
	
package(default_visibility = ["//visibility:public"])
 | 
						|
 | 
						|
load("//tools:defaults.bzl", "ts_library")
 | 
						|
 | 
						|
ts_library(
 | 
						|
    name = "testing",
 | 
						|
    srcs = glob(["**/*.ts"]),
 | 
						|
    module_name = "@angular/compiler/testing",
 | 
						|
    deps = [
 | 
						|
        "//packages:types",
 | 
						|
        "//packages/compiler",
 | 
						|
    ],
 | 
						|
)
 |