Skip to content

Commit 97ce84f

Browse files
linting
1 parent 84b5cb5 commit 97ce84f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

node_package/src/RSCWebpackLoader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { pathToFileURL } = require('url');
33
const RSCWebpackLoader = async function Loader(source, sourceMap) {
44
// Mark loader as async since we're doing async operations
55
const callback = this.async();
6-
6+
77
try {
88
// Convert file path to URL format
99
const fileUrl = pathToFileURL(this.resourcePath).href;
@@ -13,7 +13,7 @@ const RSCWebpackLoader = async function Loader(source, sourceMap) {
1313
format: 'module',
1414
source,
1515
}));
16-
16+
1717
callback(null, result.source, sourceMap);
1818
} catch (error) {
1919
callback(error);

0 commit comments

Comments
 (0)