File tree 2 files changed +3
-3
lines changed 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) {
184
184
try {
185
185
chartData = analyzer . getViewerData ( ...args , analyzerOpts ) ;
186
186
} catch ( err ) {
187
- logger . error ( `Could 't analyze webpack bundle:\n${ err } ` ) ;
187
+ logger . error ( `Couldn 't analyze webpack bundle:\n${ err } ` ) ;
188
188
logger . debug ( err . stack ) ;
189
189
chartData = null ;
190
190
}
@@ -195,7 +195,7 @@ function getChartData(analyzerOpts, ...args) {
195
195
chartData
196
196
&& ! Array . isArray ( chartData )
197
197
) {
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" ) ;
199
199
chartData = null ;
200
200
}
201
201
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ describe('Analyzer', function () {
94
94
) ;
95
95
} ) ;
96
96
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 ( ) {
98
98
generateReportFrom ( 'with-missing-parsed-module/stats.json' ) ;
99
99
const chartData = await getChartData ( ) ;
100
100
let unparsedModules = 0 ;
You can’t perform that action at this time.
0 commit comments