Skip to content

Commit 9194858

Browse files
committed
build: update dependency yargs to v18
See associated pull request for more information.
1 parent 241f7bc commit 9194858

File tree

12 files changed

+234
-125
lines changed

12 files changed

+234
-125
lines changed

bazel/app-bundling/index.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
load("@build_bazel_rules_nodejs//:index.bzl", "npm_package_bin")
77
load("@npm//@bazel/terser:index.bzl", "terser_minified")
88
load("@npm//prettier:index.bzl", "prettier")
9-
load("//bazel/esbuild:index.bzl", "esbuild", "esbuild_config")
109
load("//bazel:expand_template.bzl", "expand_template")
1110
load("//bazel:filter_outputs.bzl", "filter_outputs")
11+
load("//bazel/esbuild:index.bzl", "esbuild", "esbuild_config")
1212

1313
def _create_esbuild_minify_options(debug = False):
1414
# The minify options match with the configuration used by the CLI. The whitespace
@@ -26,7 +26,7 @@ def app_bundle(
2626
visibility = None,
2727
testonly = False,
2828
platform = "browser",
29-
target = "es2020",
29+
target = "es2022",
3030
format = "iife",
3131
**kwargs):
3232
"""

bazel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"true-case-path": "2.2.1",
1616
"typescript": "5.8.3",
1717
"wait-on": "^8.0.3",
18-
"yargs": "17.7.2"
18+
"yargs": "18.0.0"
1919
},
2020
"pnpm": {
2121
"onlyBuiltDependencies": []

bazel/pnpm-lock.yaml

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

bazel/spec-bundling/spec-bundle.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
22
load("//bazel/esbuild:index.bzl", "esbuild", "esbuild_amd", "esbuild_config", "esbuild_esm_bundle")
3-
load("//bazel/spec-bundling:spec-entrypoint.bzl", "spec_entrypoint")
43
load("//bazel/spec-bundling:bundle-config.bzl", "spec_bundle_config_file")
4+
load("//bazel/spec-bundling:spec-entrypoint.bzl", "spec_entrypoint")
55

66
def spec_bundle(
77
name,
@@ -10,7 +10,7 @@ def spec_bundle(
1010
bootstrap = [],
1111
run_angular_linker = False,
1212
linker_unknown_declaration_handling = None,
13-
target = "es2020",
13+
target = "es2022",
1414
# For ZoneJS compatibility, async/await is downleveled.
1515
downlevel_async_await = True,
1616
external = [],

0 commit comments

Comments
 (0)