https://github.com/angular/angular
Raw File
Tip revision: f9669e50ff08cd39f0826f6e608b091996f03031 authored by Matias Niemelä on 19 July 2018, 20:17:30 UTC
release: cut the v6.1.0-rc.3 release
Tip revision: f9669e5
BUILD.bazel
package(default_visibility = ["//visibility:public"])

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

ng_module(
    name = "common",
    srcs = glob(
        [
            "*.ts",
            "src/**/*.ts",
        ],
    ),
    module_name = "@angular/common",
    deps = [
        "//packages/core",
        "@rxjs",
    ],
)

ng_package(
    name = "npm_package",
    srcs = [
        "package.json",
        "//packages/common/http:package.json",
        "//packages/common/http/testing:package.json",
        "//packages/common/testing:package.json",
    ],
    entry_point = "packages/common/index.js",
    packages = ["//packages/common/locales:package"],
    tags = [
        "ivy-jit",
        "ivy-local",
        "release-with-framework",
    ],
    deps = [
        "//packages/common",
        "//packages/common/http",
        "//packages/common/http/testing",
        "//packages/common/testing",
    ],
)
back to top