-
-
Notifications
You must be signed in to change notification settings - Fork 110
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
types: allow any number of settings to be passed to a plugin #62
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/cc @Rokt33r |
ChristianMurphy
commented
Jul 13, 2019
This comment has been minimized.
This comment has been minimized.
ChristianMurphy
commented
Jul 13, 2019
ChristianMurphy
commented
Jul 13, 2019
ChristianMurphy
commented
Jul 13, 2019
ChristianMurphy
commented
Jul 13, 2019
uses variadic function with tuple based type checking to ensure settings and parameters match up.
ChristianMurphy
force-pushed
the
types/many-settings
branch
from
July 14, 2019 00:15
0cdfe28
to
b7cf3ad
Compare
Rokt33r
approved these changes
Jul 15, 2019
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.
Looks much better. :) I hope typescript could check the usage with PluginTuple one day.
This adds a new feature, if merged, it should go in a minor release. |
wooorm
approved these changes
Jul 15, 2019
wooorm
pushed a commit
to remarkjs/remark
that referenced
this pull request
Jul 20, 2019
Related to unifiedjs/unified#53. Related to unifiedjs/unified#54. Related to unifiedjs/unified#56. Related to unifiedjs/unified#57. Related to unifiedjs/unified#58. Related to unifiedjs/unified#59. Related to unifiedjs/unified#60. Related to unifiedjs/unified#61. Related to unifiedjs/unified#62. Related to unifiedjs/unified#63. Related to unifiedjs/unified#64. Related to #426. Reviewed-by: Titus Wormer <tituswormer@gmail.com> Reviewed-by: Junyoung Choi <fluke8259@gmail.com> Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com> Co-authored-by: Junyoung Choi <fluke8259@gmail.com> Co-authored-by: Christian Murphy <christian.murphy.42@gmail.com>
wooorm
added
☂️ area/types
This affects typings
⛵️ status/released
🐛 type/bug
This is a problem
👶 semver/patch
This is a backwards-compatible fix
labels
Aug 10, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
☂️ area/types
This affects typings
💪 phase/solved
Post is done
👶 semver/patch
This is a backwards-compatible fix
🐛 type/bug
This is a problem
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
uses variadic function with tuple based type checking to ensure settings and parameters match up.
resolves #60 by removing extra settings in favor of a variadic function.
There are some trade offs here, I've documented them to the best of my ability below.