File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const pkg = require('./package.json');
12
12
const { Command } = require ( 'commander' ) ;
13
13
const program = new Command ( ) ;
14
14
const { ProxyAgent } = require ( 'proxy-agent' ) ;
15
- const reporters = require ( './reporters' ) ;
15
+ const reporters = require ( './reporters/index.js ' ) ;
16
16
17
17
class Input {
18
18
constructor ( filenameForOutput , stream , opts ) {
@@ -49,7 +49,7 @@ function loadAllMarkdownFiles(rootFolder = '.') {
49
49
}
50
50
51
51
function commaSeparatedReportersList ( value ) {
52
- return value . split ( ',' ) . map ( ( reporter ) => reporters [ reporter ] ?? reporters . eefault ) ;
52
+ return value . split ( ',' ) . map ( ( reporter ) => reporters [ reporter ] ?? reporters . default ) ;
53
53
}
54
54
55
55
function getInputs ( ) {
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
module . exports = {
4
- default : require ( './default' ) ,
5
- junit : require ( './junit' ) ,
4
+ default : require ( './default.js ' ) ,
5
+ junit : require ( './junit.js ' ) ,
6
6
} ;
You can’t perform that action at this time.
0 commit comments