-
Notifications
You must be signed in to change notification settings - Fork 57
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: add analytics dashboard lwc templates #325
Conversation
path.join(outputdir, componentname, `${componentname}.cmp`) | ||
), | ||
{} | ||
); |
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.
These calls where all ending with a ,
(and not ;
before, which, while valid, seemed a little weird. I updated to use a ;
, which also fixed the formatting -- turn off whitespace diffs in the gear icon to see this a little better.
c914d59
to
0db5d2f
Compare
| 'ApexUnitTest' | ||
| 'ApexException' | ||
| 'InboundEmailService'; | ||
| 'DefaultApexClass' |
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.
The reformat in pre-commit did these whitespace changes here.
@W-9191596@
@W-9191596@
0db5d2f
to
71de51a
Compare
and also use a hard-coded list on the options flag config for --template to match for consistency.
* feat: support aura/lwc component templates @W-9191596@ * feat: analytics dashboard lwc templates @W-9191596@ * fix: update to union type on LightningComponentOptions and also use a hard-coded list on the options flag config for --template to match for consistency.
* feat: support aura/lwc component templates @W-9191596@ * feat: analytics dashboard lwc templates @W-9191596@ * fix: update to union type on LightningComponentOptions and also use a hard-coded list on the options flag config for --template to match for consistency.
* feat: support aura/lwc component templates @W-9191596@ * feat: analytics dashboard lwc templates @W-9191596@ * fix: update to union type on LightningComponentOptions and also use a hard-coded list on the options flag config for --template to match for consistency.
* feat: support aura/lwc component templates @W-9191596@ * feat: analytics dashboard lwc templates @W-9191596@ * fix: update to union type on LightningComponentOptions and also use a hard-coded list on the options flag config for --template to match for consistency.
What does this PR do?
--template
withforce:lighting:component:create
:--help
didn't list any available template names--template
with any value (including the defaultDefaultLightningCmp
) would produce an errorforce:lightning:component:create
command to support multiple options for--template
analyticsDashboard
andanalyticsDashboardWithStep
lwc templatesWhat issues does this PR fix or reference?
@W-9191596@
cc: @jimmydief