mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 13:32:43 +08:00
35 lines
857 B
Python
35 lines
857 B
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
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
licenses(["notice"]) # MIT License
|
|
|
|
ts_library(
|
|
name = "file_system_engine_host_test_lib",
|
|
srcs = glob(
|
|
include = [
|
|
"**/*.ts",
|
|
],
|
|
),
|
|
data = glob(
|
|
include = [
|
|
"**/collection.json",
|
|
"**/*.js",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages/angular_devkit/schematics",
|
|
# ":testing",
|
|
# "//packages/angular_devkit/core",
|
|
# "//packages/angular_devkit/core:node",
|
|
# "@npm//rxjs",
|
|
#
|
|
"@npm//@types/jasmine",
|
|
"@npm//@types/node",
|
|
],
|
|
)
|