Skip to content

Commit 52192f2

Browse files
author
Danny Davidson
committed
fix exports
1 parent d4464e7 commit 52192f2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

build/lib/system/supports-colors.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,6 @@ function getSupportLevel(stream) {
144144
return translateLevel(level);
145145
}
146146

147-
export default {
148-
supportsColor: getSupportLevel,
149-
stdout: getSupportLevel(process.stdout),
150-
stderr: getSupportLevel(process.stderr),
151-
};
147+
export const supportsColor = getSupportLevel;
148+
export const stdout = getSupportLevel(process.stdout);
149+
export const stderr = getSupportLevel(process.stderr);

0 commit comments

Comments
 (0)