Skip to content

Commit dfd7296

Browse files
committed
Fix Prettier issue
1 parent 888be88 commit dfd7296

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/helpers/getCssExports.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ export const getCssExports = ({
8888
}
8989

9090
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
91-
sourceMap = JSON.parse(output.map ?? "undefined") as RawSourceMap | undefined;
91+
sourceMap = JSON.parse(output.map ?? 'undefined') as
92+
| RawSourceMap
93+
| undefined;
9294
transformedCss = output.css.toString();
9395
},
9496
);

0 commit comments

Comments
 (0)