Skip to content

Commit 8864ec3

Browse files
committed
Upgrade @rollup/plugin-node-resolve
1 parent e338537 commit 8864ec3

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

common/api-review/analytics-exp.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type CustomEventName<T> = T extends EventNameString ? never : T;
3737
// @public
3838
export interface CustomParams {
3939
// (undocumented)
40-
[key: string]: any;
40+
[key: string]: unknown;
4141
}
4242

4343
// @public

common/api-review/performance-exp.api.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ import { PerformanceTrace } from '@firebase/performance-types-exp';
1212
export { FirebasePerformance }
1313

1414
// @public
15-
export function getPerformance(app: FirebaseApp, settings?: PerformanceSettings): FirebasePerformance;
15+
export function getPerformance(app: FirebaseApp): FirebasePerformance;
16+
17+
// @public
18+
export function initializePerformance(app: FirebaseApp, settings?: PerformanceSettings): FirebasePerformance;
1619

1720
export { PerformanceSettings }
1821

repo-scripts/size-analysis/bundle/rollup.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ export async function bundleWithRollup(
3636
};
3737

3838
if (moduleDirectory) {
39-
resolveOptions.customResolveOptions = {
40-
moduleDirectory
41-
};
39+
resolveOptions.moduleDirectories = [moduleDirectory];
4240
}
4341

4442
const bundle = await rollup.rollup({

0 commit comments

Comments
 (0)