Skip to content

Commit ec88df8

Browse files
committed
chore: code format 🍭
1 parent c9edb0a commit ec88df8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/loader.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const LOADER_NAME = `lightningcss-loader`
88
export 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
}

0 commit comments

Comments
 (0)