-
Notifications
You must be signed in to change notification settings - Fork 531
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
feat(typescript): expose types at regular build #4832
Conversation
This moves away from -experimental and to stable. Note that, like every type change, this could be a breaking change, as manually defined definitions will now merge with the ones provided by InstantSearch. In almost all cases manual definitions or changes made are no longer needed, if you do however see any problems, please open an issue or pull request with reproduction.
@@ -32,10 +34,6 @@ | |||
"addToApiReportFile": true | |||
}, | |||
|
|||
"ae-internal-missing-underscore": { |
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.
this didn't actually error anymore since a while already
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 79119d9:
|
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.
Huge milestone! 🎉
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.
Let's go 🚀
Summary
The typescript migration is complete
This PR moves away from -experimental and to stable.
Result
InstantSearch is now shipped with type definitions built-in!
Note that, like every type change, this could be a breaking change, as manually defined definitions will now merge with the ones provided by InstantSearch.
In almost all cases manual definitions or changes made are no longer needed, if you do however see any problems, please open an issue or pull request with reproduction.
If you were using -experiemental-typescript tag up to now, that can be changed to a regular InstantSearch version from this release onwards.
fixes #4340