mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 18:43:42 +08:00
The new public API tooling searches for nested package.json files to determine the location of secondary entrypoints. All secondary entrypoints for the CLI related packages now contain a secondary entrypoint package.json file. The internal monorepo package discovery script was also updated to support the presence of the nested package.json files.
29 lines
836 B
Python
29 lines
836 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
# 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"])
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "testing",
|
|
srcs = glob(
|
|
include = ["**/*.ts"],
|
|
),
|
|
data = ["package.json"],
|
|
module_name = "@angular-devkit/schematics/testing",
|
|
module_root = "index.d.ts",
|
|
deps = [
|
|
"//packages/angular_devkit/core",
|
|
"//packages/angular_devkit/schematics",
|
|
"//packages/angular_devkit/schematics/tasks",
|
|
"//packages/angular_devkit/schematics/tasks/node",
|
|
"//packages/angular_devkit/schematics/tools",
|
|
"@npm//@types/node",
|
|
"@npm//rxjs",
|
|
],
|
|
)
|