diff --git a/integration/bazel/package.json b/integration/bazel/package.json index cd8ee4a371..af8854f90a 100644 --- a/integration/bazel/package.json +++ b/integration/bazel/package.json @@ -29,7 +29,6 @@ "@bazel/terser": "0.42.1", "@bazel/typescript": "0.42.1", "@types/jasmine": "2.8.8", - "html-insert-assets": "0.2.0", "http-server": "0.12.0", "karma": "4.4.1", "karma-chrome-launcher": "3.1.0", diff --git a/integration/bazel/src/BUILD.bazel b/integration/bazel/src/BUILD.bazel index 38cf8b463d..033b70f429 100644 --- a/integration/bazel/src/BUILD.bazel +++ b/integration/bazel/src/BUILD.bazel @@ -1,7 +1,6 @@ package(default_visibility = ["//visibility:public"]) load("@build_bazel_rules_nodejs//:index.bzl", "pkg_web") -load("@npm//html-insert-assets:index.bzl", "html_insert_assets") load("@npm//http-server:index.bzl", "http_server") load("@npm_angular_bazel//:index.bzl", "ng_module") load("@npm_bazel_rollup//:index.bzl", "rollup_bundle") @@ -35,37 +34,9 @@ filegroup( ], ) -html_insert_assets( - name = "inject_scripts", - # We can't output "index.html" since that collides with the input file. - # We output "_/index.html" instead and remap in ts_devserver & pkg_web - # using additional_root_paths. - outs = ["_/index.html"], - args = [ - "--html", - "$(location :index.html)", - "--out", - "$@", - "--assets", - # We load zone.js outside the bundle. That's because it's a "polyfill" - # which speculates that such features might be available in a browser. - # Also it's tricky to configure dead code elimination to understand that - # zone.js is used, given that we don't have any import statement that - # imports from it. - "$(location @npm//:node_modules/zone.js/dist/zone.min.js)", - # Bundle path for both prodapp & devserver - "bundle.min.js", - ], - data = [ - ":index.html", - "@npm//:node_modules/zone.js/dist/zone.min.js", - ], -) - ts_devserver( name = "devserver", - # Remap "_/index.html" => "index.html" - additional_root_paths = ["src/_"], + additional_root_paths = ["npm/node_modules/zone.js/dist"], entry_module = "bazel_integration_test/src/main", scripts = [ ":rxjs_umd_modules", @@ -74,7 +45,7 @@ ts_devserver( # an index.html file. serving_path = "/bundle.min.js", static_files = [ - ":inject_scripts", + "index.html", "@npm//:node_modules/zone.js/dist/zone.min.js", ], deps = ["//src"], @@ -99,12 +70,11 @@ terser_minified( pkg_web( name = "prodapp", srcs = [ + "index.html", ":bundle.min", - ":inject_scripts", "@npm//:node_modules/zone.js/dist/zone.min.js", ], - # Remap "_/index.html" => "index.html" - additional_root_paths = ["src/_"], + additional_root_paths = ["npm/node_modules/zone.js/dist"], ) http_server( diff --git a/integration/bazel/src/index.html b/integration/bazel/src/index.html index f4ab9d187d..f1bbe5db37 100644 --- a/integration/bazel/src/index.html +++ b/integration/bazel/src/index.html @@ -9,5 +9,7 @@