1
0
mirror of https://github.com/angular/angular-cli.git synced 2025-05-28 11:10:12 +08:00
2018-08-22 16:36:10 -07:00

61 lines
1.4 KiB
Python

# Copyright Google Inc. All Rights Reserved.
#
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE file at https://angular.io/license
licenses(["notice"]) # MIT
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "update",
srcs = glob(
include = ["**/*.ts"],
exclude = [
"**/*_spec.ts",
"**/*_spec_large.ts",
"**/*_benchmark.ts",
],
),
deps = [
"//packages/angular_devkit/core",
"//packages/angular_devkit/schematics",
"//packages/angular_devkit/schematics:tasks",
"@rxjs",
"@rxjs//operators",
# @typings: node
],
)
ts_library(
name = "update_test_lib",
srcs = glob(
include = [
"**/*_spec.ts",
"**/*_spec_large.ts",
],
),
data = glob(
include = [
"**/*.json",
]
),
deps = [
":update",
"//packages/angular_devkit/core",
"//packages/angular_devkit/schematics",
"//packages/angular_devkit/schematics:testing",
"@rxjs",
"@rxjs//operators",
# @typings: jasmine
# @typings: node
],
)
jasmine_node_test(
name = "update_test",
srcs = [":update_test_lib"],
)