-
Notifications
You must be signed in to change notification settings - Fork 900
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade individual packages to TS 4.7.4 #6799
Conversation
🦋 Changeset detectedLatest commit: 70cf8a7 The changes in this PR will be included in the next version bump. This PR includes changesets to release 45 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1This report is too large (144,373 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
b3b8bc3
to
aa0a71f
Compare
@@ -24,6 +24,6 @@ | |||
"@firebase/remote-config-compat": "0.1.16" | |||
}, | |||
"devDependencies": { | |||
"typescript": "4.2.2" | |||
"typescript": "4.7.4" | |||
} | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: should we fix these new lines?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, while we're in this file. Fixed.
@@ -44,12 +44,12 @@ const enum EffectiveConnectionType { | |||
* | |||
* ref: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation | |||
*/ | |||
interface NetworkInformation { | |||
interface NetworkInformationWithEffectiveType extends NetworkInformation { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious: what made these types to rename to NetworkInformationWithEffectiveType
? Could this be breaking?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think so, it's not publicly exposed and is only used here. I will add a comment about what the deal is:
// `effectiveType` is an experimental property and not included in
// TypeScript's typings for the native NetworkInformation interface
5018b60
to
70cf8a7
Compare
Previously only the main package.json had its typescript version bumped.