mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-15 10:11:50 +08:00
50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
load("@npm2//:defs.bzl", "npm_link_all_packages")
|
|
load("//tools:defaults2.bzl", "npm_package", "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"])
|
|
|
|
npm_link_all_packages()
|
|
|
|
ts_project(
|
|
name = "architect_cli",
|
|
srcs = [
|
|
"bin/architect.ts",
|
|
] + glob(["src/**/*.ts"]),
|
|
module_name = "@angular-devkit/architect-cli",
|
|
deps = [
|
|
":node_modules/@angular-devkit/architect",
|
|
":node_modules/@angular-devkit/core",
|
|
"//:node_modules/@types/node",
|
|
"//:node_modules/@types/progress",
|
|
"//:node_modules/@types/yargs-parser",
|
|
"//:node_modules/ansi-colors",
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = "license",
|
|
srcs = ["//:LICENSE"],
|
|
outs = ["LICENSE"],
|
|
cmd = "cp $(execpath //:LICENSE) $@",
|
|
)
|
|
|
|
npm_package(
|
|
name = "pkg",
|
|
pkg_deps = [
|
|
"//packages/angular_devkit/architect:package.json",
|
|
"//packages/angular_devkit/core:package.json",
|
|
],
|
|
tags = ["release-package"],
|
|
deps = [
|
|
":README.md",
|
|
":architect_cli_rjs",
|
|
":license",
|
|
],
|
|
)
|