mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 17:43:52 +08:00
This commit updates the BUILD files to specify fine-grained node_module deps by replacing "@typings" comments with actual @npm node module. Moved tools/bazel.rc -> .bazelrc Removed "jasmine" typings from base tsconfig.json Added @bazel/karma to devDependencies, needed for `ts_web_test`
206 lines
3.9 KiB
Python
206 lines
3.9 KiB
Python
# 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"]) # MIT
|
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
load("//tools:ts_json_schema.bzl", "ts_json_schema")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "angular-cli",
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = [
|
|
"**/*_spec.ts",
|
|
"**/*_spec_large.ts",
|
|
],
|
|
),
|
|
data = glob(["**/*.json"]),
|
|
module_name = "@angular/cli",
|
|
deps = [
|
|
":command_schemas",
|
|
"//packages/angular_devkit/architect",
|
|
"//packages/angular_devkit/core",
|
|
"//packages/angular_devkit/core:node",
|
|
"//packages/angular_devkit/schematics",
|
|
"//packages/angular_devkit/schematics:tools",
|
|
# @typings: es2017.object
|
|
"@npm//@types/node",
|
|
"@npm//@types/inquirer",
|
|
"@npm//@types/semver",
|
|
],
|
|
)
|
|
|
|
ts_library(
|
|
name = "command_schemas",
|
|
srcs = [],
|
|
deps = [
|
|
":add_schema",
|
|
":build_schema",
|
|
":config_schema",
|
|
":deprecated_schema",
|
|
":doc_schema",
|
|
":e2e_schema",
|
|
":easter_egg_schema",
|
|
":eject_schema",
|
|
":generate_schema",
|
|
":help_schema",
|
|
":lint_schema",
|
|
":new_schema",
|
|
":run_schema",
|
|
":serve_schema",
|
|
":test_schema",
|
|
":update_schema",
|
|
":version_schema",
|
|
":xi18n_schema",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "add_schema",
|
|
src = "commands/add.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "build_schema",
|
|
src = "commands/build.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "config_schema",
|
|
src = "commands/config.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "deprecated_schema",
|
|
src = "commands/deprecated.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "doc_schema",
|
|
src = "commands/doc.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "e2e_schema",
|
|
src = "commands/e2e.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "easter_egg_schema",
|
|
src = "commands/easter-egg.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "eject_schema",
|
|
src = "commands/eject.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "generate_schema",
|
|
src = "commands/generate.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "help_schema",
|
|
src = "commands/help.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "lint_schema",
|
|
src = "commands/lint.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "new_schema",
|
|
src = "commands/new.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "run_schema",
|
|
src = "commands/run.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "serve_schema",
|
|
src = "commands/serve.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "test_schema",
|
|
src = "commands/test.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "update_schema",
|
|
src = "commands/update.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "version_schema",
|
|
src = "commands/version.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|
|
|
|
ts_json_schema(
|
|
name = "xi18n_schema",
|
|
src = "commands/xi18n.json",
|
|
data = [
|
|
"commands/definitions.json",
|
|
],
|
|
)
|