We recently reworked our `ng_rollup_bundle` rule to no longer output ESM5 and to optimize applications properly (previously applications were not optimized properly due to incorrect build optimizer setup). This change meant that a lot of symbols have been removed from the golden correctly. See: fd65958b887f6ea8dd5235e6de1d533e4c578602 Unfortunately though, a few symbols have been accidentally removed because they are now part of the bundle as ES2015 classes which the symbol extractor does not pick up. This commit fixes the symbol extractor to capture ES2015 classes. We also update the golden to reflect this change. PR Close #38093
		
			
				
	
	
		
			23 lines
		
	
	
		
			416 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			416 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "ts_library")
 | |
| 
 | |
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| ts_library(
 | |
|     name = "es2015_class_output_lib",
 | |
|     srcs = ["es2015_class_output.ts"],
 | |
| )
 | |
| 
 | |
| filegroup(
 | |
|     name = "es2015_class_output",
 | |
|     srcs = [":es2015_class_output_lib"],
 | |
|     output_group = "es6_sources",
 | |
| )
 | |
| 
 | |
| filegroup(
 | |
|     name = "fixtures",
 | |
|     srcs = glob([
 | |
|         "**/*.js",
 | |
|         "**/*.json",
 | |
|     ]),
 | |
| )
 |