File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
bazel/benchmark/app_bundling Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -65,15 +65,15 @@ def app_bundle(
6565 visibility = visibility ,
6666 )
6767
68- common_esbuild_options = dict ( kwargs , ** {
68+ common_esbuild_options = {
6969 "config" : "%s_esbuild_config" % name ,
7070 "entry_point" : entry_point ,
7171 "target" : target ,
7272 "platform" : platform ,
7373 "format" : format ,
7474 "sourcemap" : "external" ,
7575 "visibility" : visibility ,
76- })
76+ }
7777
7878 common_terser_options = {
7979 "visibility" : visibility ,
@@ -86,14 +86,13 @@ def app_bundle(
8686 esbuild (
8787 name = name ,
8888 args = _create_esbuild_minify_options (False ),
89- ** common_esbuild_options
89+ ** dict ( kwargs , ** common_esbuild_options )
9090 )
9191
9292 esbuild (
9393 name = "%s.debug" % name ,
9494 args = _create_esbuild_minify_options (True ),
95- tags = ["manual" ],
96- ** common_esbuild_options
95+ ** dict (kwargs , tags = ["manual" ], ** common_esbuild_options )
9796 )
9897
9998 terser_minified (name = name + ".min" , src = name + ".js" , ** common_terser_options )
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ ng_module(
1515app_bundle (
1616 name = "bundle" ,
1717 entry_point = "main_fixture.ts" ,
18+ tags = ["some-test-tag" ],
1819 deps = [":test_fixture_lib" ],
1920)
2021
You can’t perform that action at this time.
0 commit comments