Skip to content

Commit 2f92a74

Browse files
authored
Update dependencies in packages and repo-scripts (#8729)
1 parent d1c6e31 commit 2f92a74

File tree

96 files changed

+3865
-6192
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+3865
-6192
lines changed

config/api-extractor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
*
101101
* DEFAULT VALUE: false
102102
*/
103-
// "skipLibCheck": true,
103+
"skipLibCheck": true,
104104
},
105105

106106
/**

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@
6262
"repo-scripts/*"
6363
],
6464
"devDependencies": {
65-
"@babel/core": "7.26.0",
65+
"@babel/core": "7.26.7",
6666
"@babel/plugin-transform-modules-commonjs": "7.26.3",
67-
"@babel/preset-env": "7.26.0",
67+
"@babel/preset-env": "7.26.7",
6868
"@babel/preset-typescript": "7.26.0",
6969
"@babel/register": "7.25.9",
7070
"@changesets/changelog-github": "0.5.0",
71-
"@changesets/cli": "2.27.11",
71+
"@changesets/cli": "2.27.12",
7272
"@types/chai": "4.3.20",
7373
"@types/chai-as-promised": "7.1.8",
7474
"@types/child-process-promise": "2.2.6",
@@ -80,7 +80,7 @@
8080
"@types/long": "4.0.2",
8181
"@types/mocha": "9.1.1",
8282
"@types/mz": "2.7.8",
83-
"@types/node": "18.19.71",
83+
"@types/node": "18.19.74",
8484
"@types/request": "2.48.12",
8585
"@types/sinon": "9.0.11",
8686
"@types/sinon-chai": "3.2.12",
@@ -139,7 +139,7 @@
139139
"nyc": "15.1.0",
140140
"ora": "5.4.1",
141141
"patch-package": "7.0.2",
142-
"playwright": "1.49.1",
142+
"playwright": "1.50.0",
143143
"postinstall-postinstall": "2.1.0",
144144
"prettier": "2.8.8",
145145
"protractor": "5.4.2",

packages/analytics-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
},
2424
"devDependencies": {
2525
"@firebase/app-compat": "0.2.48",
26-
"rollup": "2.79.1",
26+
"rollup": "2.79.2",
2727
"@rollup/plugin-json": "6.1.0",
28-
"rollup-plugin-typescript2": "0.31.2",
28+
"rollup-plugin-typescript2": "0.36.0",
2929
"typescript": "5.5.4"
3030
},
3131
"repository": {

packages/analytics-compat/tsconfig.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"outDir": "dist"
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
9-
}
6+
"exclude": ["dist/**/*"]
7+
}

packages/analytics-interop-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/analytics-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/analytics/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
"license": "Apache-2.0",
4949
"devDependencies": {
5050
"@firebase/app": "0.10.18",
51-
"rollup": "2.79.1",
51+
"rollup": "2.79.2",
5252
"@rollup/plugin-commonjs": "21.1.0",
5353
"@rollup/plugin-json": "6.1.0",
5454
"@rollup/plugin-node-resolve": "13.3.0",
55-
"rollup-plugin-typescript2": "0.31.2",
55+
"rollup-plugin-typescript2": "0.36.0",
5656
"typescript": "5.5.4"
5757
},
5858
"repository": {

packages/analytics/rollup.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,18 @@ import typescript from 'typescript';
2222
import { generateBuildTargetReplaceConfig } from '../../scripts/build/rollup_replace_build_target';
2323
import { emitModulePackageFile } from '../../scripts/build/rollup_emit_module_package_file';
2424
import pkg from './package.json';
25+
import tsconfig from './tsconfig.json';
2526

2627
const deps = [
2728
...Object.keys(Object.assign({}, pkg.peerDependencies, pkg.dependencies))
2829
];
2930

3031
const buildPlugins = [
3132
typescriptPlugin({
32-
typescript
33+
typescript,
34+
tsconfigOverride: {
35+
exclude: [...tsconfig.exclude, '**/*.test.ts']
36+
}
3337
}),
3438
json({ preferConst: true })
3539
];

packages/app-check-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
"license": "Apache-2.0",
4545
"devDependencies": {
4646
"@firebase/app-compat": "0.2.48",
47-
"rollup": "2.79.1",
47+
"rollup": "2.79.2",
4848
"@rollup/plugin-commonjs": "21.1.0",
4949
"@rollup/plugin-json": "6.1.0",
5050
"@rollup/plugin-node-resolve": "13.3.0",
51-
"rollup-plugin-typescript2": "0.31.2",
51+
"rollup-plugin-typescript2": "0.36.0",
5252
"typescript": "5.5.4"
5353
},
5454
"repository": {

packages/app-check-interop-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/app-check-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/app-check/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
"license": "Apache-2.0",
4646
"devDependencies": {
4747
"@firebase/app": "0.10.18",
48-
"rollup": "2.79.1",
48+
"rollup": "2.79.2",
4949
"@rollup/plugin-commonjs": "21.1.0",
5050
"@rollup/plugin-json": "6.1.0",
5151
"@rollup/plugin-node-resolve": "13.3.0",
52-
"rollup-plugin-typescript2": "0.31.2",
52+
"rollup-plugin-typescript2": "0.36.0",
5353
"typescript": "5.5.4"
5454
},
5555
"repository": {

packages/app-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
"tslib": "^2.1.0"
4545
},
4646
"devDependencies": {
47-
"rollup": "2.79.1",
47+
"rollup": "2.79.2",
4848
"@rollup/plugin-json": "6.1.0",
4949
"rollup-plugin-replace": "2.2.0",
50-
"rollup-plugin-typescript2": "0.31.2",
50+
"rollup-plugin-typescript2": "0.36.0",
5151
"typescript": "5.5.4"
5252
},
5353
"repository": {

packages/app-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
"license": "Apache-2.0",
4747
"devDependencies": {
4848
"@rollup/plugin-json": "6.1.0",
49-
"rollup": "2.79.1",
49+
"rollup": "2.79.2",
5050
"rollup-plugin-replace": "2.2.0",
51-
"rollup-plugin-typescript2": "0.31.2",
51+
"rollup-plugin-typescript2": "0.36.0",
5252
"rollup-plugin-dts": "5.3.1",
5353
"typescript": "5.5.4"
5454
},

packages/app/rollup.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,18 @@ import dts from 'rollup-plugin-dts';
2323
import { generateBuildTargetReplaceConfig } from '../../scripts/build/rollup_replace_build_target';
2424
import { emitModulePackageFile } from '../../scripts/build/rollup_emit_module_package_file';
2525
import pkg from './package.json';
26+
import tsconfig from './tsconfig.json';
2627

2728
const deps = Object.keys(
2829
Object.assign({}, pkg.peerDependencies, pkg.dependencies)
2930
);
3031

3132
const buildPlugins = [
3233
typescriptPlugin({
33-
typescript
34+
typescript,
35+
tsconfigOverride: {
36+
exclude: [...tsconfig.exclude, '**/*.test.ts']
37+
}
3438
}),
3539
json({ preferConst: true })
3640
];

packages/app/tsconfig.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@
44
"outDir": "dist",
55
"downlevelIteration": true
66
},
7-
"exclude": [
8-
"dist/**/*"
9-
]
10-
}
7+
"exclude": ["dist/**/*"]
8+
}

packages/auth-compat/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@
5959
"devDependencies": {
6060
"@firebase/app-compat": "0.2.48",
6161
"@rollup/plugin-json": "6.1.0",
62-
"rollup": "2.79.1",
62+
"rollup": "2.79.2",
6363
"rollup-plugin-replace": "2.2.0",
64-
"rollup-plugin-typescript2": "0.31.2",
65-
"selenium-webdriver": "4.8.0",
64+
"rollup-plugin-typescript2": "0.36.0",
65+
"selenium-webdriver": "4.28.1",
6666
"typescript": "5.5.4"
6767
},
6868
"repository": {

packages/auth-compat/tsconfig.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"outDir": "dist"
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
9-
}
6+
"exclude": ["dist/**/*"]
7+
}

packages/auth-interop-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/auth-types/tsconfig.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"compilerOptions": {
44
"noEmit": true
55
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
6+
"exclude": ["dist/**/*"]
97
}

packages/auth/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@
136136
"@rollup/plugin-strip": "2.1.0",
137137
"@types/express": "4.17.21",
138138
"chromedriver": "119.0.1",
139-
"rollup": "2.79.1",
139+
"rollup": "2.79.2",
140140
"rollup-plugin-sourcemaps": "0.6.3",
141-
"rollup-plugin-typescript2": "0.31.2",
142-
"selenium-webdriver": "4.8.0",
141+
"rollup-plugin-typescript2": "0.36.0",
142+
"selenium-webdriver": "4.28.1",
143143
"totp-generator": "0.0.14",
144144
"typescript": "5.5.4"
145145
},

packages/auth/rollup.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import alias from '@rollup/plugin-alias';
2424
import { generateBuildTargetReplaceConfig } from '../../scripts/build/rollup_replace_build_target';
2525
import { emitModulePackageFile } from '../../scripts/build/rollup_emit_module_package_file';
2626
import pkg from './package.json';
27+
import tsconfig from './tsconfig.json';
2728

2829
const deps = Object.keys(
2930
Object.assign({}, pkg.peerDependencies, pkg.dependencies)
@@ -47,7 +48,10 @@ const nodeAliasPlugin = alias({
4748
const buildPlugins = [
4849
json(),
4950
strip({ functions: ['debugAssert.*'] }),
50-
typescriptPlugin({ typescript })
51+
typescriptPlugin({
52+
typescript,
53+
tsconfigOverride: { exclude: [...tsconfig.exclude, '**/*.test.ts'] }
54+
})
5155
];
5256

5357
const browserBuilds = [
@@ -191,6 +195,7 @@ const webWorkerBuild = {
191195
}),
192196
typescriptPlugin({
193197
typescript,
198+
exclude: [...tsconfig.exclude, '**/*.test.*'],
194199
compilerOptions: {
195200
lib: [
196201
// Remove dom after we figure out why navigator stuff doesn't exist

packages/auth/tsconfig.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@
33
"compilerOptions": {
44
"outDir": "dist"
55
},
6-
"exclude": [
7-
"dist/**/*",
8-
"demo/**/*"
9-
]
10-
}
6+
"exclude": ["dist/**/*", "demo/**/*"]
7+
}

packages/component/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
},
3737
"license": "Apache-2.0",
3838
"devDependencies": {
39-
"rollup": "2.79.1",
40-
"rollup-plugin-typescript2": "0.31.2",
39+
"rollup": "2.79.2",
40+
"rollup-plugin-typescript2": "0.36.0",
4141
"typescript": "5.5.4"
4242
},
4343
"repository": {

packages/component/rollup.config.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,20 @@ import typescriptPlugin from 'rollup-plugin-typescript2';
1919
import typescript from 'typescript';
2020
import { emitModulePackageFile } from '../../scripts/build/rollup_emit_module_package_file';
2121
import pkg from './package.json';
22+
import tsconfig from './tsconfig.json';
2223

2324
const deps = Object.keys(
2425
Object.assign({}, pkg.peerDependencies, pkg.dependencies)
2526
);
2627

27-
const buildPlugins = [typescriptPlugin({ typescript })];
28+
const buildPlugins = [
29+
typescriptPlugin({
30+
typescript,
31+
tsconfigOverride: {
32+
exclude: [...tsconfig.exclude, '**/*.test.ts']
33+
}
34+
})
35+
];
2836

2937
const esmBuild = {
3038
input: 'index.ts',

packages/component/src/provider.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -319,15 +319,15 @@ export class Provider<T extends Name> {
319319
instanceIdentifier: normalizeIdentifierForFactory(instanceIdentifier),
320320
options
321321
});
322-
this.instances.set(instanceIdentifier, instance);
322+
this.instances.set(instanceIdentifier, instance!);
323323
this.instancesOptions.set(instanceIdentifier, options);
324324

325325
/**
326326
* Invoke onInit listeners.
327327
* Note this.component.onInstanceCreated is different, which is used by the component creator,
328328
* while onInit listeners are registered by consumers of the provider.
329329
*/
330-
this.invokeOnInitCallbacks(instance, instanceIdentifier);
330+
this.invokeOnInitCallbacks(instance!, instanceIdentifier);
331331

332332
/**
333333
* Order is important
@@ -339,7 +339,7 @@ export class Provider<T extends Name> {
339339
this.component.onInstanceCreated(
340340
this.container,
341341
instanceIdentifier,
342-
instance
342+
instance!
343343
);
344344
} catch {
345345
// ignore errors in the onInstanceCreatedCallback

packages/component/tsconfig.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@
44
"outDir": "dist",
55
"downlevelIteration": true
66
},
7-
"exclude": [
8-
"dist/**/*"
9-
]
10-
}
7+
"exclude": ["dist/**/*"]
8+
}

0 commit comments

Comments
 (0)