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`
8
8
export async function LightningCssLoader (
9
9
this : LoaderContext < ILightningCssLoaderConfig > ,
10
10
source : string ,
11
- prevMap ?: Record < string , any >
11
+ prevMap ?: Record < string , any > ,
12
12
) : Promise < void > {
13
13
const done = this . async ( )
14
14
const options = this . getOptions ( )
@@ -17,8 +17,8 @@ export async function LightningCssLoader(
17
17
if ( implementation && typeof implementation . transform !== 'function' ) {
18
18
done (
19
19
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
+ ) ,
22
22
)
23
23
return
24
24
}
You can’t perform that action at this time.
0 commit comments