Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 73d7086

Browse files
committed
refactor(copy): show bold & green text when copy update finishes to match build
1 parent a5a8e16 commit 73d7086

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/copy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ export function copyUpdate(changedFiles: ChangedFile[], context: BuildContext) {
112112
});
113113
return Promise.all(promises);
114114
}).then(() => {
115-
logger.finish();
115+
logger.finish('green', true);
116+
Logger.newLine();
116117
}).catch(err => {
117118
throw logger.fail(err);
118119
});

0 commit comments

Comments
 (0)