https://github.com/angular/angular
Raw File
Tip revision: a8f6542115e7a3eb88f914ec3f86cd6f15e256e9 authored by Alex Rickabaugh on 15 May 2018, 19:34:04 UTC
release: cut the v6.0.2 release
Tip revision: a8f6542
BUILD.bazel
package(default_visibility = ["//visibility:public"])

load("@build_bazel_rules_nodejs//:defs.bzl", "node_modules_filegroup")

exports_files([
    "tsconfig.json",
    "LICENSE",
])

# Developers should always run `bazel run :install`
# This ensures that package.json in subdirectories get installed as well.
alias(
    name = "install",
    actual = "@yarn//:yarn",
)

node_modules_filegroup(
    name = "node_modules",
    packages = [
        "bytebuffer",
        "hammerjs",
        "jasmine",
        "minimist",
        "protobufjs",
        "reflect-metadata",
        "source-map-support",
        "tsickle",
        "tslib",
        "tsutils",
        "typescript",
        "zone.js",
        "@angular-devkit/core",
        "@angular-devkit/schematics",
        "@types",
        "@webcomponents/custom-elements",
    ],
)

filegroup(
    name = "web_test_bootstrap_scripts",
    # do not sort
    srcs = [
        "//:node_modules/reflect-metadata/Reflect.js",
        "//:node_modules/zone.js/dist/zone.js",
        "//:node_modules/zone.js/dist/zone-testing.js",
        "//:node_modules/zone.js/dist/task-tracking.js",
    ],
)

filegroup(
    name = "angularjs",
    # do not sort
    srcs = [
        "//:node_modules/angular/angular.js",
        "//:node_modules/angular-mocks/angular-mocks.js",
    ],
)
back to top