Merge pull request #20429 from backstage/renovate/rollup-2.x-lockfile

fix(deps): update dependency rollup to v2.79.1
This commit is contained in:
Fredrik Adelöw
2023-10-08 18:51:16 +02:00
committed by GitHub
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ type ForwardFileImportsOptions = {
* path `dist/MyComponent/my-image.png`. The import itself will stay, but be resolved,
* resulting in something like `import ImageUrl from './MyComponent/my-image.png'`
*/
export function forwardFileImports(options: ForwardFileImportsOptions): Plugin {
export function forwardFileImports(options: ForwardFileImportsOptions) {
const filter = createFilter(options.include, options.exclude);
// We collect the absolute paths to all files we want to bundle into the
@@ -131,5 +131,5 @@ export function forwardFileImports(options: ForwardFileImportsOptions): Plugin {
return { ...inputOptions, external };
},
};
} satisfies Plugin;
}