Skip to content

Commit

Permalink
Disable automatic code splitting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Katharine committed Aug 21, 2019
1 parent a76cea3 commit b314e85
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions gopherage/cmd/html/static/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ ts_library(

rollup_bundle(
name = "browser_bundle",
enable_code_splitting = False,
entry_point = ":browser.ts",
deps = [
":browser",
Expand Down
8 changes: 8 additions & 0 deletions prow/cmd/deck/static/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jasmine_node_test(

rollup_bundle(
name = "prow_bundle",
enable_code_splitting = False,
entry_point = ":prow/prow.ts",
deps = [
":prow",
Expand All @@ -80,6 +81,7 @@ ts_library(

rollup_bundle(
name = "plugin_help_bundle",
enable_code_splitting = False,
entry_point = ":plugin-help/plugin-help.ts",
deps = [
":plugin_help",
Expand All @@ -98,6 +100,7 @@ ts_library(

rollup_bundle(
name = "pr_bundle",
enable_code_splitting = False,
entry_point = "pr/pr.ts",
deps = [
":pr",
Expand All @@ -117,6 +120,7 @@ ts_library(

rollup_bundle(
name = "tide_bundle",
enable_code_splitting = False,
entry_point = ":tide/tide.ts",
deps = [
":tide",
Expand All @@ -136,6 +140,7 @@ ts_library(

rollup_bundle(
name = "tide_history_bundle",
enable_code_splitting = False,
entry_point = ":tide-history/tide-history.ts",
deps = [
":tide_history",
Expand All @@ -154,6 +159,7 @@ ts_library(

rollup_bundle(
name = "command_help_bundle",
enable_code_splitting = False,
entry_point = ":command-help/command-help.ts",
deps = [
":command_help",
Expand Down Expand Up @@ -185,6 +191,7 @@ ts_library(

rollup_bundle(
name = "spyglass_bundle",
enable_code_splitting = False,
entry_point = ":spyglass/spyglass.ts",
deps = [
":spyglass",
Expand All @@ -194,6 +201,7 @@ rollup_bundle(

rollup_bundle(
name = "spyglass_lens_bundle",
enable_code_splitting = False,
entry_point = ":spyglass/lens.ts",
deps = [
":spyglass_common",
Expand Down
1 change: 1 addition & 0 deletions prow/spyglass/lenses/buildlog/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ ts_library(

rollup_bundle(
name = "script_bundle",
enable_code_splitting = False,
entry_point = ":buildlog.ts",
deps = [
":script",
Expand Down
1 change: 1 addition & 0 deletions prow/spyglass/lenses/coverage/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ts_library(

rollup_bundle(
name = "script_bundle",
enable_code_splitting = False,
entry_point = ":coverage.ts",
deps = [
":script",
Expand Down
1 change: 1 addition & 0 deletions prow/spyglass/lenses/junit/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ts_library(

rollup_bundle(
name = "script_bundle",
enable_code_splitting = False,
entry_point = ":lens.ts",
deps = [
":script",
Expand Down
1 change: 1 addition & 0 deletions prow/spyglass/lenses/metadata/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ts_library(

rollup_bundle(
name = "script_bundle",
enable_code_splitting = False,
entry_point = ":metadata.ts",
deps = [
":script",
Expand Down
1 change: 1 addition & 0 deletions prow/spyglass/write-a-lens.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ ts_library(

rollup_bundle(
name = "script_bundle",
enable_code_splitting = False,
entry_point = ":sample.ts",
deps = [
":script",
Expand Down

0 comments on commit b314e85

Please sign in to comment.