Skip to content

Commit c9b0f2b

Browse files
committed
chore: format
1 parent b3f7313 commit c9b0f2b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/rollup-plugin-polyfills-loader/src/rollupPluginPolyfillsLoader.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ export function polyfillsLoader(pluginOptions: RollupPluginPolyfillsLoaderConfig
8888
// js files (incl. chunks) will always be in the root directory
8989
const pathToRoot = path.posix.dirname(importPath);
9090
for (const chunkPath of entrypoint.chunk.imports) {
91-
const relativeChunkPath = normalize(chunkPath.startsWith('http') ? chunkPath : path.posix.join(pathToRoot, chunkPath));
91+
const relativeChunkPath = normalize(
92+
chunkPath.startsWith('http') ? chunkPath : path.posix.join(pathToRoot, chunkPath),
93+
);
9294
preloaded.push(relativeChunkPath);
9395
}
9496
}

0 commit comments

Comments
 (0)