Skip to content

Instantly share code, notes, and snippets.

@alexeagle
Created January 4, 2018 22:05
Show Gist options
  • Save alexeagle/b29c41a1cd7392d39438ef9412e1ea31 to your computer and use it in GitHub Desktop.
Save alexeagle/b29c41a1cd7392d39438ef9412e1ea31 to your computer and use it in GitHub Desktop.
load("@angular//:index.bzl", "ng_module")
ng_module(
name = "src",
srcs = glob(["*.ts"]),
tsconfig = ":tsconfig.json",
deps = ["//src/hello-world"],
)
load("@build_bazel_rules_nodejs//:future.bzl", "rollup_bundle")
rollup_bundle(
name = "bundle",
deps = [":src"]
entry_point = "angular_bazel_example/src/main.js"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment