mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
3288868217
Adjust to run under ci.
23 lines
349 B
Python
23 lines
349 B
Python
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"package.json",
|
|
"schema.json",
|
|
])
|
|
|
|
filegroup(
|
|
name = "sources",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
]),
|
|
)
|
|
|
|
ng_module(
|
|
name = "config",
|
|
srcs = [":sources"],
|
|
deps = ["//packages/core"],
|
|
)
|