mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
83a6e203e3
The options to generate NgFactory and NgSummary files were added to Ivy for backwards compatibility with ViewEngine. Since ViewEngine was deprecated and removed, the NgFactory and NgSummary files are no longer used as well. This commit drops obsolete options to generate NgFactory and NgSummary files. Also, the logic that generates those files is also removed. PR Close #48268
11 lines
301 B
Python
11 lines
301 B
Python
load("//tools:defaults.bzl", _ng_module = "ng_module")
|
|
|
|
def ng_module(name, tsconfig = "//devtools:tsconfig.json", srcs = [], angular_assets = [], **kwargs):
|
|
_ng_module(
|
|
name = name,
|
|
tsconfig = tsconfig,
|
|
srcs = srcs,
|
|
assets = angular_assets,
|
|
**kwargs
|
|
)
|