-
Notifications
You must be signed in to change notification settings - Fork 125
Rearrange SDK PackageMeta instantiation to be similar to normal packages #1639
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
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
f733321
Fix or disable miscellaneous lints in dartdoc
jcollins-g 668043e
Merge branch 'master' into fix-lints
jcollins-g 6fedd10
Clean up a few more lints.
jcollins-g a32fd98
Rename category to package in all remaining references
jcollins-g b59a4df
dartfmt
jcollins-g bc64d2c
Review comments
jcollins-g 50475c1
Merge branch 'fix-lints' into category-redo
jcollins-g 6afc18b
Intermediate state
jcollins-g 3ee7464
basic dartdoc options now working
jcollins-g 5500887
Fix test failure (accidentally caching config info)
jcollins-g 1e0fff4
Merge branch 'category-redo' into dartdoc-options-yaml
jcollins-g 65d9d38
dartfmt
jcollins-g 0ddc926
Merge branch 'fix-lints' into category-redo
jcollins-g a113ef8
dartfmt
jcollins-g 47e3977
Merge branch 'category-redo' into dartdoc-options-yaml
jcollins-g e9b63db
Merge branch 'master' into fix-lints
jcollins-g 62d30ca
Merge branch 'fix-lints' into category-redo
jcollins-g 014a13f
Merge branch 'category-redo' into dartdoc-options-yaml
jcollins-g 4c57a00
one last rename
jcollins-g 45ff8d9
Merge branch 'category-redo' into dartdoc-options-yaml
jcollins-g 59a50c6
Merge branch 'master' into category-redo
jcollins-g 3737530
Merge branch 'category-redo' into dartdoc-options-yaml
jcollins-g ffc1149
Merge branch 'master' into dartdoc-options-yaml
jcollins-g de913dd
Remove overly complicated config inheritance; we can add it back if w…
jcollins-g 76013a6
dartfmt
jcollins-g 687ea5a
Unify SDK PackageMeta construction and add cache
jcollins-g 9d0d8c5
update test package docs
jcollins-g 216f6d2
PackageMeta construction sufficiently robust for refactor
jcollins-g aaba65d
Fix infinite loop and error messages
jcollins-g 5883782
Rename path/p import directive to pathLib everywhere.
jcollins-g 2873935
dartfmt
jcollins-g 5d20ee6
Merge branch 'dartdoc-options-yaml' into dartdoc-sdkmeta-shuffle
jcollins-g 092e2fe
'Dart SDK' + '' => 'Dart Core' + 'SDK'
jcollins-g 17e8d6b
Merge branch 'master' into dartdoc-options-yaml
jcollins-g 99b1c65
Merge branch 'dartdoc-options-yaml' into dartdoc-sdkmeta-shuffle
jcollins-g b8ccf9c
SDK name is no longer special
jcollins-g File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
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.
FWIW:
equals('Dart')
can be simplified to'Dart'
...