-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
chore: migrate to ts 5.3.3 #33235
base: master
Are you sure you want to change the base?
chore: migrate to ts 5.3.3 #33235
Conversation
c3abdd3
to
b93c643
Compare
🕵 fluentui-web-components-v3 No visual regressions between this PR and main |
🕵 FluentUIV0 No visual regressions between this PR and main |
@@ -377,8 +377,7 @@ | |||
"eslint": "8.57.0", | |||
"swc-loader": "^0.2.6", | |||
"prettier": "2.8.8", | |||
"puppeteer": "19.6.0", | |||
"@microsoft/api-extractor/typescript": "5.2.2" |
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.
after bump it has the same ts version, removed
c259064
to
9b89037
Compare
📊 Bundle size reportUnchanged fixtures
|
Pull request demo site: URL |
@@ -336,11 +336,11 @@ | |||
"tmp": "0.2.1", | |||
"ts-jest": "29.1.1", | |||
"ts-loader": "9.4.2", | |||
"ts-node": "10.9.1", | |||
"ts-node": "10.9.2", |
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.
fixes: TypeStrong/ts-node#2091, in our codebase was failing on scripts/**
30cd175
to
8c52902
Compare
8c52902
to
ae904e7
Compare
@@ -149,7 +149,7 @@ const _getMenuItemStylesFunction = memoizeFunction( | |||
...styles: (IStyleFunctionOrObject<IContextualMenuItemStyleProps, IContextualMenuItemStyles> | undefined)[] | |||
): IStyleFunctionOrObject<IContextualMenuItemStyleProps, IContextualMenuItemStyles> => { | |||
return (styleProps: IContextualMenuItemStyleProps) => | |||
concatStyleSetsWithProps(styleProps, getItemStyles, ...styles); | |||
concatStyleSetsWithProps(styleProps, getItemStyles, ...styles) as IContextualMenuItemStyles; |
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.
Release notes
https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-3.html
Previous Behavior
New Behavior
Related Issue(s)