Skip to content

Commit 03bee99

Browse files
authored
Merge pull request #14178 from apache/release-dev
Release: 5.0.2
2 parents 1693e93 + 0c1ffeb commit 03bee99

20 files changed

+50041
-12490
lines changed

build/addHeader.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ function run() {
8888
if (passFiles.length) {
8989
if (isVerbose) {
9090
passFiles.forEach(function (path) {
91-
console.log(chalk.green.dim(path));
91+
console.log(chalk.green(path));
9292
});
9393
}
9494
else {
95-
console.log(chalk.green.dim(passFiles.length + ' files. (use argument "--verbose" see details)'));
95+
console.log(chalk.green(passFiles.length + ' files. (use argument "--verbose" see details)'));
9696
}
9797
}
9898
else {
@@ -105,7 +105,7 @@ function run() {
105105
console.log('--------------------');
106106
if (updatedFiles.length) {
107107
updatedFiles.forEach(function (path) {
108-
console.log(chalk.green.bright(path));
108+
console.log(chalk.green(path));
109109
});
110110
}
111111
else {
@@ -118,7 +118,7 @@ function run() {
118118
console.log('----------------');
119119
if (pendingFiles.length) {
120120
pendingFiles.forEach(function (path) {
121-
console.log(chalk.red.dim(path));
121+
console.log(chalk.red(path));
122122
});
123123
}
124124
else {

0 commit comments

Comments
 (0)