Created
January 4, 2018 22:05
-
-
Save alexeagle/b29c41a1cd7392d39438ef9412e1ea31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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