feat(ivy): implement $localize()
global function (#31609)
PR Close #31609
This commit is contained in:

committed by
Misko Hevery

parent
b34bdf5c42
commit
b21397bde9
33
packages/localize/BUILD.bazel
Normal file
33
packages/localize/BUILD.bazel
Normal file
@ -0,0 +1,33 @@
|
||||
load("//tools:defaults.bzl", "ng_package", "ts_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
ts_library(
|
||||
name = "localize",
|
||||
srcs = glob(
|
||||
[
|
||||
"*.ts",
|
||||
"src/**/*.ts",
|
||||
],
|
||||
),
|
||||
module_name = "@angular/localize",
|
||||
deps = [
|
||||
"@npm//@types/node",
|
||||
],
|
||||
)
|
||||
|
||||
ng_package(
|
||||
name = "npm_package",
|
||||
srcs = [
|
||||
"package.json",
|
||||
"//packages/localize/run_time:package.json",
|
||||
],
|
||||
entry_point = ":index.ts",
|
||||
tags = [
|
||||
"release-with-framework",
|
||||
],
|
||||
deps = [
|
||||
":localize",
|
||||
"//packages/localize/run_time",
|
||||
],
|
||||
)
|
Reference in New Issue
Block a user