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 @@ -8,7 +8,7 @@ const LOADER_NAME = `lightningcss-loader`
88export async function LightningCssLoader (
99 this : LoaderContext < ILightningCssLoaderConfig > ,
1010 source : string ,
11- prevMap ?: Record < string , any >
11+ prevMap ?: Record < string , any > ,
1212) : Promise < void > {
1313 const done = this . async ( )
1414 const options = this . getOptions ( )
@@ -17,8 +17,8 @@ export async function LightningCssLoader(
1717 if ( implementation && typeof implementation . transform !== 'function' ) {
1818 done (
1919 new TypeError (
20- `[${ LOADER_NAME } ]: options.implementation.transform must be an 'lightningcss' transform function. Received ${ typeof implementation . transform } `
21- )
20+ `[${ LOADER_NAME } ]: options.implementation.transform must be an 'lightningcss' transform function. Received ${ typeof implementation . transform } ` ,
21+ ) ,
2222 )
2323 return
2424 }
You can’t perform that action at this time.
0 commit comments