-
Notifications
You must be signed in to change notification settings - Fork 230
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
build: fix type errors with newer versions of typescript #323
base: main
Are you sure you want to change the base?
Conversation
|
c173f4b
to
4298496
Compare
4298496
to
dabdbbd
Compare
i have essentially given up trying to make this better and just configured |
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.
left a few minor comments. overall looks good. i'm interested in hearing your responses to some of my questions.
Please merge the PR! |
return (this.features ?? {})[opt.toLowerCase()] === undefined; | ||
return this.features != null && this.features[opt.toLowerCase()] != null; |
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.
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.
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.
it took a bit of digging because this file has been renamed more than once.
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.
the only change i did to that method in that commit was to add nullish coalescing. i'm referring specifically to the comparison to undefined
.
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.
agreed. it's wrong. i also can't find any use of this public method anywhere.
heya... so we gonna get this merged? |
i need to update the changelog prior to merge, as it is badly out-of-date. we don't have any automation for this task so it takes a bit to manually gather & format the data and i haven't had the space. |
fixes #322