source: trip-planner-front/node_modules/@angular-devkit/architect/testing/BUILD.bazel@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 729 bytes
Line 
1# Copyright Google Inc. All Rights Reserved.
2#
3# Use of this source code is governed by an MIT-style license that can be
4# found in the LICENSE file at https://angular.io/license
5
6load("//tools:defaults.bzl", "ts_library")
7
8licenses(["notice"]) # MIT
9
10package(default_visibility = ["//visibility:public"])
11
12ts_library(
13 name = "testing",
14 srcs = glob(
15 include = ["**/*.ts"],
16 exclude = ["**/*_spec.ts"],
17 ),
18 module_name = "@angular-devkit/architect/testing",
19 module_root = "index.d.ts",
20 deps = [
21 "//packages/angular_devkit/architect",
22 "//packages/angular_devkit/core",
23 "//packages/angular_devkit/core/node",
24 "@npm//@types/node",
25 "@npm//rxjs",
26 ],
27)
Note: See TracBrowser for help on using the repository browser.