https://github.com/angular/angular
Revision 1ac9085b0ae89755afd839cdd0e779855da3774e authored by Matias Niemelä on 29 June 2017, 21:40:09 UTC, committed by Matias Niemelä on 29 June 2017, 21:41:40 UTC
1 parent 1cfe67d
Raw File
Tip revision: 1ac9085b0ae89755afd839cdd0e779855da3774e authored by Matias Niemelä on 29 June 2017, 21:40:09 UTC
docs: add changelog for 4.3.0-beta.1
Tip revision: 1ac9085
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