We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Followup of #281 in support of #175.
For example assume we have:
@Task() bump( @Positional(allowed: const ['major', 'minor', 'patch', 'build', 'release']) String releaseType) { new PubApp.global('den').run(['bump', releaseType]); }
Then the user should get the following completions:
grind bump:[TAB] major minor patch build release
And similarly for options:
@Task() bump( {@Option(allowed: const ['major', 'minor', 'patch', 'build', 'release']) String releaseType: 'patch') { new PubApp.global('den').run(['bump', releaseType]); }
grind:bump --release-type [TAB] major minor patch build release
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Followup of #281 in support of #175.
For example assume we have:
Then the user should get the following completions:
And similarly for options:
The text was updated successfully, but these errors were encountered: