File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ import loggerCreator from './logger';
14
14
15
15
function delegateToCssLoader ( ctx , input , callback ) {
16
16
ctx . async = ( ) => callback ;
17
- cssLoader . call ( ctx , input ) ;
17
+ cssLoader . call ( ctx , ... input ) ;
18
18
}
19
19
20
- module . exports = function ( input ) {
20
+ module . exports = function ( ... input ) {
21
21
if ( this . cacheable ) this . cacheable ( ) ;
22
22
23
23
// mock async step 1 - css loader is async, we need to intercept this so we get async ourselves
@@ -71,5 +71,5 @@ ${skippedDefinitions.map(sd => ` - "${sd}"`).join('\n').red}
71
71
// mock async step 3 - make `async` return the actual callback again before calling the 'real' css-loader
72
72
delegateToCssLoader ( this , input , callback ) ;
73
73
} ;
74
- cssLocalsLoader . call ( this , input ) ;
74
+ cssLocalsLoader . call ( this , ... input ) ;
75
75
} ;
You can’t perform that action at this time.
0 commit comments