Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bazel/app-bundling/index.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
load("@build_bazel_rules_nodejs//:index.bzl", "npm_package_bin")
load("@npm//@bazel/terser:index.bzl", "terser_minified")
load("@npm//prettier:index.bzl", "prettier")
load("//bazel/esbuild:index.bzl", "esbuild", "esbuild_config")
load("//bazel:expand_template.bzl", "expand_template")
load("//bazel:filter_outputs.bzl", "filter_outputs")
load("//bazel/esbuild:index.bzl", "esbuild", "esbuild_config")

def _create_esbuild_minify_options(debug = False):
# The minify options match with the configuration used by the CLI. The whitespace
Expand All @@ -26,7 +26,7 @@ def app_bundle(
visibility = None,
testonly = False,
platform = "browser",
target = "es2020",
target = "es2022",
format = "iife",
**kwargs):
"""
Expand Down
2 changes: 1 addition & 1 deletion bazel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"true-case-path": "2.2.1",
"typescript": "5.8.3",
"wait-on": "^8.0.3",
"yargs": "17.7.2"
"yargs": "18.0.0"
},
"pnpm": {
"onlyBuiltDependencies": []
Expand Down
84 changes: 82 additions & 2 deletions bazel/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bazel/spec-bundling/spec-bundle.bzl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
load("//bazel/esbuild:index.bzl", "esbuild", "esbuild_amd", "esbuild_config", "esbuild_esm_bundle")
load("//bazel/spec-bundling:spec-entrypoint.bzl", "spec_entrypoint")
load("//bazel/spec-bundling:bundle-config.bzl", "spec_bundle_config_file")
load("//bazel/spec-bundling:spec-entrypoint.bzl", "spec_entrypoint")

def spec_bundle(
name,
Expand All @@ -10,7 +10,7 @@ def spec_bundle(
bootstrap = [],
run_angular_linker = False,
linker_unknown_declaration_handling = None,
target = "es2020",
target = "es2022",
# For ZoneJS compatibility, async/await is downleveled.
downlevel_async_await = True,
external = [],
Expand Down
Loading