-
Notifications
You must be signed in to change notification settings - Fork 273
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
refactor: add configureProvider plugin action #472
Conversation
d198041
to
a9ffafc
Compare
82b5d7d
to
48f0375
Compare
a9ffafc
to
d4162e2
Compare
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 good to me. Added a few minor text/grammar comments.
|
||
This can also be used to further specify the semantics of the provider, including dependencies. | ||
|
||
This action is called on every execution of Garden, so it should return quickly and avoid doing |
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.
"on every execution of Garden" -> "on every execution of a Garden command"?
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.
How about
"Important: This action is called on most executions of Garden commands, so it should return quickly and avoid performing expensive processing or network calls."
|
||
This can also be used to further specify the semantics of the provider, including dependencies. | ||
|
||
This action is called on every execution of Garden, so it should return quickly and avoid doing |
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.
"avoid doing" -> "avoid"?
@@ -302,6 +321,9 @@ export const moduleActionDescriptions: | |||
configuration and test configuration. Since services and tests are not specified using built-in | |||
framework configuration fields, this action needs to specify those via the \`serviceConfigs\` and | |||
\`testConfigs\` output keys. | |||
|
|||
This action is called on every execution of Garden, so it should return quickly and avoid doing |
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.
"avoid doing" -> "avoid"?
@@ -287,6 +303,9 @@ export const moduleActionDescriptions: | |||
should not specify the built-in fields (such as \`name\`, \`type\` and \`description\`). | |||
|
|||
Used when auto-generating framework documentation. | |||
|
|||
This action is called on every execution of Garden, so it should return quickly and avoid doing |
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.
"avoid doing" -> "avoid"?
d4162e2
to
8f80c06
Compare
8f80c06
to
bdf6994
Compare
This is part of a larger branch I had, reworking the provider configuration and preparation mechanisms.