Skip to content

Commit

Permalink
Merge pull request #14178 from apache/release-dev
Browse files Browse the repository at this point in the history
Release: 5.0.2
  • Loading branch information
100pah committed Feb 1, 2021
2 parents 1693e93 + 0c1ffeb commit 03bee99
Show file tree
Hide file tree
Showing 20 changed files with 50,041 additions and 12,490 deletions.
8 changes: 4 additions & 4 deletions build/addHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ function run() {
if (passFiles.length) {
if (isVerbose) {
passFiles.forEach(function (path) {
console.log(chalk.green.dim(path));
console.log(chalk.green(path));
});
}
else {
console.log(chalk.green.dim(passFiles.length + ' files. (use argument "--verbose" see details)'));
console.log(chalk.green(passFiles.length + ' files. (use argument "--verbose" see details)'));
}
}
else {
Expand All @@ -105,7 +105,7 @@ function run() {
console.log('--------------------');
if (updatedFiles.length) {
updatedFiles.forEach(function (path) {
console.log(chalk.green.bright(path));
console.log(chalk.green(path));
});
}
else {
Expand All @@ -118,7 +118,7 @@ function run() {
console.log('----------------');
if (pendingFiles.length) {
pendingFiles.forEach(function (path) {
console.log(chalk.red.dim(path));
console.log(chalk.red(path));
});
}
else {
Expand Down

0 comments on commit 03bee99

Please sign in to comment.