File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ function getChartData(analyzerOpts, ...args) {
184184 try {
185185 chartData = analyzer . getViewerData ( ...args , analyzerOpts ) ;
186186 } catch ( err ) {
187- logger . error ( `Could 't analyze webpack bundle:\n${ err } ` ) ;
187+ logger . error ( `Couldn 't analyze webpack bundle:\n${ err } ` ) ;
188188 logger . debug ( err . stack ) ;
189189 chartData = null ;
190190 }
@@ -195,7 +195,7 @@ function getChartData(analyzerOpts, ...args) {
195195 chartData
196196 && ! Array . isArray ( chartData )
197197 ) {
198- logger . error ( "Could 't find any javascript bundles in provided stats file" ) ;
198+ logger . error ( "Couldn 't find any javascript bundles in provided stats file" ) ;
199199 chartData = null ;
200200 }
201201
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ describe('Analyzer', function () {
9494 ) ;
9595 } ) ;
9696
97- it . skip ( "should not filter out modules that we could 't find during parsing" , async function ( ) {
97+ it . skip ( "should not filter out modules that we couldn 't find during parsing" , async function ( ) {
9898 generateReportFrom ( 'with-missing-parsed-module/stats.json' ) ;
9999 const chartData = await getChartData ( ) ;
100100 let unparsedModules = 0 ;
You can’t perform that action at this time.
0 commit comments