source: trip-planner-front/node_modules/@angular-devkit/schematics/testing/BUILD.bazel@ 8d391a1

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

initial commit

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