Skip to content

Commit 488c869

Browse files
Merge branch 'analytics-typescript' into app-typescript
2 parents deb281d + a16efca commit 488c869

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

eslint.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ export default [
4040
'**/type-test.ts',
4141
'packages/**/modular/dist/**/*',
4242
'packages/ai/__tests__/test-utils',
43-
'packages/vertexai/dist',
44-
'packages/ai/dist',
43+
'packages/**/dist/**/*',
4544
],
4645
},
4746
...compat

packages/analytics/__tests__/analytics.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ import analytics, {
6161
setConsent,
6262
settings,
6363
} from '../lib';
64+
import '../lib/types.d.ts';
6465

65-
import { createCheckV9Deprecation } from '@react-native-firebase/app/common/unitTestUtils';
66-
import type { CheckV9DeprecationFunction } from '@react-native-firebase/app/common/unitTestUtils';
66+
import { createCheckV9Deprecation } from '@react-native-firebase/app/lib/common/unitTestUtils';
67+
import type { CheckV9DeprecationFunction } from '@react-native-firebase/app/lib/common/unitTestUtils';
6768

6869
describe('Analytics', function () {
6970
describe('namespace', function () {

packages/app/lib/internal/web/firebaseInstallations.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function getId(installations: Installations): Promise<string>;
3838
export function onIdChange(
3939
installations: Installations,
4040
observer: (installationId: string) => void,
41-
onError?: (error: Error) => void
41+
onError?: (error: Error) => void,
4242
): Unsubscribe;
4343

4444
// makeIDBAvailable function - makes IndexedDB available in environments that don't have it

0 commit comments

Comments
 (0)