Skip to content

Commit

Permalink
build: mark pkg_tar and pkg_npm as external
Browse files Browse the repository at this point in the history
  • Loading branch information
kyliau committed Jul 24, 2020
1 parent aa5fd5a commit 5b65552
Show file tree
Hide file tree
Showing 23 changed files with 116 additions and 78 deletions.
15 changes: 10 additions & 5 deletions packages/angular/cli/BUILD.bazel
Expand Up @@ -3,13 +3,14 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
load("//tools:ts_json_schema.bzl", "ts_json_schema")
load("//tools:defaults.bzl", "ts_library")

licenses(["notice"]) # MIT
# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

licenses(["notice"]) # MIT

Expand All @@ -25,6 +26,8 @@ ts_library(
"node_modules/**",
],
) + [
# @external_begin
# These files are generated from the JSON schema
"//packages/angular/cli:lib/config/schema.ts",
"//packages/angular/cli:commands/analytics.ts",
"//packages/angular/cli:commands/add.ts",
Expand All @@ -44,6 +47,7 @@ ts_library(
"//packages/angular/cli:commands/version.ts",
"//packages/angular/cli:commands/run.ts",
"//packages/angular/cli:commands/xi18n.ts",
# @external_end
],
data = glob(
include = [
Expand All @@ -65,10 +69,9 @@ ts_library(
"//packages/angular_devkit/core/node",
"//packages/angular_devkit/schematics",
"//packages/angular_devkit/schematics/tools",
# @node_module: typescript:es2017.object
"@npm//@types/debug",
"@npm//@types/node",
"@npm//@types/inquirer",
"@npm//@types/node",
"@npm//@types/rimraf",
"@npm//@types/semver",
"@npm//@types/universal-analytics",
Expand Down Expand Up @@ -248,6 +251,7 @@ jasmine_node_test(
srcs = [":angular-cli_test_lib"],
)

# @external_begin
pkg_npm(
name = "npm_package",
deps = [
Expand All @@ -262,3 +266,4 @@ pkg_tar(
strip_prefix = "./npm_package",
tags = ["manual"],
)
# @external_end
2 changes: 1 addition & 1 deletion packages/angular/cli/commands/add-impl.ts
Expand Up @@ -147,7 +147,7 @@ export class AddCommand extends SchematicCommand<AddCommandSchema> {
usingYarn,
});

savePackage = manifest['ng-add'] && manifest['ng-add'].save;
savePackage = manifest['ng-add']?.save;
collectionName = manifest.name;

if (await this.hasMismatchedPeer(manifest)) {
Expand Down
2 changes: 0 additions & 2 deletions packages/angular/pwa/BUILD.bazel
Expand Up @@ -9,8 +9,6 @@ load("//tools:ts_json_schema.bzl", "ts_json_schema")

licenses(["notice"]) # MIT

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])

ts_library(
Expand Down
8 changes: 5 additions & 3 deletions packages/angular_devkit/architect/BUILD.bazel
Expand Up @@ -3,15 +3,14 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("//tools:defaults.bzl", "ts_library")
load("//tools:ts_json_schema.bzl", "ts_json_schema")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")

# @external_end
load("//tools:ts_json_schema.bzl", "ts_json_schema")

licenses(["notice"]) # MIT

Expand Down Expand Up @@ -43,10 +42,13 @@ ts_library(
include = ["src/**/*.ts"],
exclude = ["**/*_spec.ts"],
) + [
# @external_begin
# These files are generated from the JSON schema
"//packages/angular_devkit/architect:src/input-schema.ts",
"//packages/angular_devkit/architect:src/output-schema.ts",
"//packages/angular_devkit/architect:src/builders-schema.ts",
"//packages/angular_devkit/architect:src/progress-schema.ts",
# @external_end
],
# strict_checks = False,
data = glob(
Expand Down
2 changes: 0 additions & 2 deletions packages/angular_devkit/architect/node/BUILD.bazel
Expand Up @@ -7,8 +7,6 @@ load("//tools:defaults.bzl", "ts_library")

licenses(["notice"]) # MIT

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])

ts_library(
Expand Down
2 changes: 0 additions & 2 deletions packages/angular_devkit/architect/testing/BUILD.bazel
Expand Up @@ -7,8 +7,6 @@ load("//tools:defaults.bzl", "ts_library")

licenses(["notice"]) # MIT

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])

ts_library(
Expand Down
9 changes: 7 additions & 2 deletions packages/angular_devkit/benchmark/BUILD.bazel
Expand Up @@ -3,11 +3,14 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
load("//tools:defaults.bzl", "ts_library")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])
Expand Down Expand Up @@ -68,6 +71,7 @@ jasmine_node_test(
],
)

# @external_begin
pkg_npm(
name = "npm_package",
deps = [
Expand All @@ -82,3 +86,4 @@ pkg_tar(
strip_prefix = "./npm_package",
tags = ["manual"],
)
# @external_end
10 changes: 7 additions & 3 deletions packages/angular_devkit/build_angular/BUILD.bazel
Expand Up @@ -3,12 +3,15 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
load("//tools:defaults.bzl", "ts_library")
load("//tools:ts_json_schema.bzl", "ts_json_schema")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])
Expand Down Expand Up @@ -206,6 +209,7 @@ jasmine_node_test(
srcs = [":build_angular_test_lib"],
)

# @external_begin
pkg_npm(
name = "npm_package",
deps = [
Expand All @@ -220,7 +224,7 @@ pkg_tar(
strip_prefix = "./npm_package",
tags = ["manual"],
)

# @external_end
# Large build_angular specs

ts_library(
Expand Down
9 changes: 7 additions & 2 deletions packages/angular_devkit/build_ng_packagr/BUILD.bazel
Expand Up @@ -3,12 +3,15 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
load("//tools:defaults.bzl", "ts_library")
load("//tools:ts_json_schema.bzl", "ts_json_schema")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])
Expand Down Expand Up @@ -41,6 +44,7 @@ ts_library(
],
)

# @external_begin
pkg_npm(
name = "npm_package",
deps = [
Expand All @@ -56,6 +60,7 @@ pkg_tar(
tags = ["manual"],
)

# @external_end
ts_library(
name = "build_ng_packagr_test_lib",
testonly = True,
Expand Down
9 changes: 7 additions & 2 deletions packages/angular_devkit/build_optimizer/BUILD.bazel
Expand Up @@ -3,11 +3,14 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
load("//tools:defaults.bzl", "ts_library")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])
Expand Down Expand Up @@ -72,6 +75,7 @@ jasmine_node_test(
],
)

# @external_begin
pkg_npm(
name = "npm_package",
deps = [
Expand All @@ -86,3 +90,4 @@ pkg_tar(
strip_prefix = "./npm_package",
tags = ["manual"],
)
# @external_end
9 changes: 7 additions & 2 deletions packages/angular_devkit/build_webpack/BUILD.bazel
Expand Up @@ -3,12 +3,15 @@
# 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

load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
load("//tools:defaults.bzl", "ts_library")
load("//tools:ts_json_schema.bzl", "ts_json_schema")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

licenses(["notice"]) # MIT

package(default_visibility = ["//visibility:public"])
Expand Down Expand Up @@ -103,6 +106,7 @@ jasmine_node_test(
],
)

# @external_begin
pkg_npm(
name = "npm_package",
deps = [
Expand All @@ -117,3 +121,4 @@ pkg_tar(
strip_prefix = "./npm_package",
tags = ["manual"],
)
# @external_end
7 changes: 3 additions & 4 deletions packages/angular_devkit/core/BUILD.bazel
@@ -1,8 +1,8 @@
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@npm_bazel_jasmine//:index.bzl", "jasmine_node_test")
load("//tools:defaults.bzl", "ts_library")

# @external_begin
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("@build_bazel_rules_nodejs//:index.bzl", "pkg_npm")
# @external_end

Expand Down Expand Up @@ -42,12 +42,11 @@ ts_library(
"@npm//fast-json-stable-stringify",
"@npm//magic-string",
"@npm//rxjs",
"@npm//source-map",
# @node_module: typescript:es2015.core
"@npm//source-map", # @external
# @node_module: typescript:es2015.proxy
# @node_module: typescript:es2015.reflect
# @node_module: typescript:es2015.symbol.wellknown
# @node_module: typescript:es2016.array.include
# @typings: source_map
],
)

Expand Down
4 changes: 2 additions & 2 deletions packages/angular_devkit/core/src/terminal/caps.ts
Expand Up @@ -76,7 +76,7 @@ function _getColumns() {


function _createCapabilities(
stream: Socket,
stream: NodeJS.WriteStream,
isTerminalStream: boolean,
level: 0|1|2|3 = supportsColor.stdout.level,
): StreamCapabilities {
Expand All @@ -96,7 +96,7 @@ function _createCapabilities(


export function getCapabilities(
stream: Socket,
stream: NodeJS.WriteStream,
isTerminalStream = !!stream.isTTY,
): StreamCapabilities {
let maybeCaps = streamMap.get(stream);
Expand Down
56 changes: 28 additions & 28 deletions packages/angular_devkit/core/src/terminal/text.ts
Expand Up @@ -8,34 +8,34 @@
import * as caps from './caps';
import { colors } from './colors';

const stdout = typeof process == 'object'
? caps.getCapabilities(process.stdout) : { colors: false };
const supportColors: boolean = typeof process === 'object' ? caps.getCapabilities(process.stdout).colors : false;
const identityFn = (x: string) => x;

export const reset = stdout.colors ? colors.reset : (x: string) => x;
export const bold = stdout.colors ? colors.bold : (x: string) => x;
export const dim = stdout.colors ? colors.dim : (x: string) => x;
export const italic = stdout.colors ? colors.italic : (x: string) => x;
export const underline = stdout.colors ? colors.underline : (x: string) => x;
export const inverse = stdout.colors ? colors.inverse : (x: string) => x;
export const hidden = stdout.colors ? colors.hidden : (x: string) => x;
export const strikethrough = stdout.colors ? colors.strikethrough : (x: string) => x;
export const reset = supportColors ? colors.reset : identityFn;
export const bold = supportColors ? colors.bold : identityFn;
export const dim = supportColors ? colors.dim : identityFn;
export const italic = supportColors ? colors.italic : identityFn;
export const underline = supportColors ? colors.underline : identityFn;
export const inverse = supportColors ? colors.inverse : identityFn;
export const hidden = supportColors ? colors.hidden : identityFn;
export const strikethrough = supportColors ? colors.strikethrough : identityFn;

export const black = stdout.colors ? colors.black : (x: string) => x;
export const red = stdout.colors ? colors.red : (x: string) => x;
export const green = stdout.colors ? colors.green : (x: string) => x;
export const yellow = stdout.colors ? colors.yellow : (x: string) => x;
export const blue = stdout.colors ? colors.blue : (x: string) => x;
export const magenta = stdout.colors ? colors.magenta : (x: string) => x;
export const cyan = stdout.colors ? colors.cyan : (x: string) => x;
export const white = stdout.colors ? colors.white : (x: string) => x;
export const grey = stdout.colors ? colors.gray : (x: string) => x;
export const gray = stdout.colors ? colors.gray : (x: string) => x;
export const black = supportColors ? colors.black : identityFn;
export const red = supportColors ? colors.red : identityFn;
export const green = supportColors ? colors.green : identityFn;
export const yellow = supportColors ? colors.yellow : identityFn;
export const blue = supportColors ? colors.blue : identityFn;
export const magenta = supportColors ? colors.magenta : identityFn;
export const cyan = supportColors ? colors.cyan : identityFn;
export const white = supportColors ? colors.white : identityFn;
export const grey = supportColors ? colors.gray : identityFn;
export const gray = supportColors ? colors.gray : identityFn;

export const bgBlack = stdout.colors ? colors.bgBlack : (x: string) => x;
export const bgRed = stdout.colors ? colors.bgRed : (x: string) => x;
export const bgGreen = stdout.colors ? colors.bgGreen : (x: string) => x;
export const bgYellow = stdout.colors ? colors.bgYellow : (x: string) => x;
export const bgBlue = stdout.colors ? colors.bgBlue : (x: string) => x;
export const bgMagenta = stdout.colors ? colors.bgMagenta : (x: string) => x;
export const bgCyan = stdout.colors ? colors.bgCyan : (x: string) => x;
export const bgWhite = stdout.colors ? colors.bgWhite : (x: string) => x;
export const bgBlack = supportColors ? colors.bgBlack : identityFn;
export const bgRed = supportColors ? colors.bgRed : identityFn;
export const bgGreen = supportColors ? colors.bgGreen : identityFn;
export const bgYellow = supportColors ? colors.bgYellow : identityFn;
export const bgBlue = supportColors ? colors.bgBlue : identityFn;
export const bgMagenta = supportColors ? colors.bgMagenta : identityFn;
export const bgCyan = supportColors ? colors.bgCyan : identityFn;
export const bgWhite = supportColors ? colors.bgWhite : identityFn;

0 comments on commit 5b65552

Please sign in to comment.