https://github.com/angular/angular
Raw File
Tip revision: 54ea5b6ffd2bf47bc8e848863cda37c0bc05f79c authored by Alex Rickabaugh on 19 July 2017, 20:15:32 UTC
docs: add changelog for 5.0.0-beta.0
Tip revision: 54ea5b6
BUILD
package(default_visibility = ["//visibility:public"])
exports_files(["tsconfig.json"])

# This rule belongs in node_modules/BUILD
# It's here as a workaround for
# https://github.com/bazelbuild/bazel/issues/374#issuecomment-296217940
filegroup(
    name = "node_modules",
    srcs = glob([
        # Performance workaround: list individual files
        # This won't scale in the general case.
        # TODO(alexeagle): figure out what to do
        "node_modules/typescript/**",
        "node_modules/zone.js/**/*.d.ts",
        "node_modules/rxjs/**/*.d.ts",
        "node_modules/@types/**/*.d.ts",
    ]),
)
back to top