mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 04:26:01 +08:00
The `@angular-devkit/schematics` package has been migrated to the `rules_js` ts_project rule. The tsconfig path mappings for the `@angular-devkit` scope have also been cleaned up now that all the packages within this scope have been migrated.
33 lines
846 B
Python
33 lines
846 B
Python
load("//tools:interop.bzl", "ts_project")
|
|
|
|
# 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.dev/license
|
|
licenses(["notice"])
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "tasks",
|
|
srcs = glob(
|
|
include = ["**/*.ts"],
|
|
exclude = [
|
|
"node/**/*.ts",
|
|
"**/*_spec.ts",
|
|
],
|
|
),
|
|
data = ["package.json"],
|
|
interop_deps = [
|
|
"//packages/angular_devkit/core",
|
|
"//packages/angular_devkit/core/node",
|
|
"//packages/angular_devkit/schematics",
|
|
],
|
|
module_name = "@angular-devkit/schematics/tasks",
|
|
deps = [
|
|
"//:root_modules/@types/node",
|
|
"//:root_modules/ora",
|
|
"//:root_modules/rxjs",
|
|
],
|
|
)
|