Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
752 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 |
|
---|
6 | load("//tools:defaults.bzl", "ts_library")
|
---|
7 |
|
---|
8 | licenses(["notice"]) # MIT
|
---|
9 |
|
---|
10 | package(default_visibility = ["//visibility:public"])
|
---|
11 |
|
---|
12 | ts_library(
|
---|
13 | name = "node",
|
---|
14 | srcs = glob(
|
---|
15 | include = ["**/*.ts"],
|
---|
16 | exclude = ["**/*_spec.ts"],
|
---|
17 | ),
|
---|
18 | module_name = "@angular-devkit/architect/node",
|
---|
19 | module_root = "index.d.ts",
|
---|
20 | # strict_checks = False,
|
---|
21 | deps = [
|
---|
22 | "//packages/angular_devkit/architect",
|
---|
23 | "//packages/angular_devkit/core",
|
---|
24 | "//packages/angular_devkit/core/node",
|
---|
25 | "@npm//@types/node",
|
---|
26 | "@npm//rxjs",
|
---|
27 | ],
|
---|
28 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.