This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check in some parts of CLDR v42 and create a define to use them to en…
…able incremental migration. RELNOTES: n/a PiperOrigin-RevId: 500723948 Change-Id: I4eecfd2920fd1b32d1d876132a0d80425004eb5c
- Loading branch information
1 parent
01cac58
commit 2800dca
Showing
16 changed files
with
83,703 additions
and
23,383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
closure_js_library( | ||
name = "datetimesymbols", | ||
srcs = ["datetimesymbols.js"], | ||
lenient = True, | ||
) | ||
|
||
closure_js_library( | ||
name = "datetimesymbolsext", | ||
srcs = ["datetimesymbolsext.js"], | ||
lenient = True, | ||
deps = [":datetimesymbols"], | ||
) | ||
|
||
closure_js_library( | ||
name = "datetimepatternsext", | ||
srcs = ["datetimepatternsext.js"], | ||
lenient = True, | ||
deps = [":datetimepatterns"], | ||
) | ||
|
||
closure_js_library( | ||
name = "datetimepatterns", | ||
srcs = ["datetimepatterns.js"], | ||
lenient = True, | ||
deps = ["//closure/goog/i18n:datetimepatternstype"], | ||
) |
Oops, something went wrong.