-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(reporter ✨): merge watch reporter into default reporter (#492)
- Loading branch information
1 parent
23ed82c
commit f92c5cd
Showing
89 changed files
with
1,606 additions
and
2,243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1 @@ | ||
export declare function quoteΔ(str: string): string; | ||
|
||
export declare const reporter: import("@betterer/betterer").BettererReporter; | ||
|
||
export declare function testBetterΔ(context: string): string; | ||
|
||
export declare function testCheckedΔ(context: string): string; | ||
|
||
export declare function testCompleteΔ(context: string, isNew?: boolean): string; | ||
|
||
export declare function testExpiredΔ(context: string): string; | ||
|
||
export declare function testFailedΔ(context: string): string; | ||
|
||
export declare function testNewΔ(context: string): string; | ||
|
||
export declare function testObsoleteΔ(context: string): string; | ||
|
||
export declare function testRunningΔ(context: string): string; | ||
|
||
export declare function testSameΔ(context: string): string; | ||
|
||
export declare function testSkippedΔ(context: string): string; | ||
|
||
export declare function testUpdatedΔ(context: string): string; | ||
|
||
export declare function testWorseΔ(context: string): string; | ||
|
||
export declare function updateInstructionsΔ(): string; | ||
export declare const reporter: BettererReporter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export { BettererReporterΩ } from './reporter'; | ||
export { loadReporters, DEFAULT_REPORTER, WATCH_REPORTER } from './loader'; | ||
export { loadReporters, DEFAULT_REPORTER } from './loader'; | ||
export { BettererReporter, BettererReporterModule } from './types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
import { Box, Text } from 'ink'; | ||
import React, { FC } from 'react'; | ||
|
||
import { LOGO } from '../logo'; | ||
import { Text } from 'ink'; | ||
|
||
const LOGO = ` | ||
\\ | / _ _ _ | ||
'-.ooo.-' | |__ ___| |_| |_ ___ _ __ ___ _ __ | ||
---ooooo--- | '_ \\/ _ \\ __| __/ _ \\ '__/ _ \\ '__| | ||
.-'ooo'-. | |_)| __/ |_| || __/ | | __/ | | ||
/ | \\ |_.__/\\___|\\__|\\__\\___|_| \\___|_| | ||
`; | ||
|
||
export const BettererLogo: FC = function BettererLogo() { | ||
return ( | ||
<Box flexDirection="column"> | ||
<Text color="yellowBright">{LOGO}</Text> | ||
</Box> | ||
); | ||
return <Text color="yellowBright">{LOGO}</Text>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.