Skip to content

Commit ec3777e

Browse files
committed
fix: use newer formatjs_cli
1 parent 35b816e commit ec3777e

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bazel_dep(name = "rules_shell", version = "0.3.0", dev_dependency = True)
4444

4545
# FormatJS CLI toolchain
4646
formatjs_cli = use_extension("//formatjs_cli:extensions.bzl", "formatjs_cli")
47-
formatjs_cli.toolchain(version = "0.1.2")
47+
formatjs_cli.toolchain(version = "0.1.2") # NOTE: 0.1.3 is prepared but not yet released
4848
use_repo(
4949
formatjs_cli,
5050
"formatjs_cli_toolchains",

MODULE.bazel.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/aggregate/MODULE.bazel.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/custom_version/MODULE.bazel.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/simple/MODULE.bazel.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

formatjs_cli/repositories.bzl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
DEFAULT_VERSION = "0.1.2"
44

55
FORMATJS_CLI_VERSIONS = {
6+
# NOTE: 0.1.3 infrastructure is prepared but not yet released
7+
# To use 0.1.3 when available, download the binaries and update the SHA256 checksums below
8+
"0.1.3": {
9+
"darwin-arm64": {
10+
"url": "https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.3/formatjs_cli-darwin-arm64",
11+
"sha256": "0000000000000000000000000000000000000000000000000000000000000000", # TODO: Update when released
12+
},
13+
"linux-x64": {
14+
"url": "https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.3/formatjs_cli-linux-x64",
15+
"sha256": "0000000000000000000000000000000000000000000000000000000000000000", # TODO: Update when released
16+
},
17+
},
618
"0.1.2": {
719
"darwin-arm64": {
820
"url": "https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.2/formatjs_cli-darwin-arm64",

0 commit comments

Comments
 (0)