https://github.com/angular/angular
Raw File
Tip revision: 3988ebf432ec33a7bf7126c7e9ad09d69d0c2501 authored by Ben Lesh on 19 September 2018, 21:07:10 UTC
release: cut the v6.1.8 release
Tip revision: 3988ebf
BUILD.bazel
package(default_visibility = ["//visibility:public"])

exports_files(["package.json"])

load("//tools:defaults.bzl", "ng_module")

ng_module(
    name = "config",
    srcs = glob([
        "*.ts",
        "src/**/*.ts",
    ]),
    module_name = "@angular/service-worker/config",
    deps = ["//packages/core"],
)
back to top