-
Notifications
You must be signed in to change notification settings - Fork 405
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
Swap LWC with LWC-next #660
Conversation
This is for Winter '19. @W-5487489@
@@ -26,7 +26,7 @@ | |||
"@salesforce/salesforcedx-utils-vscode": "43.19.0", | |||
"ajv": "^6.1.1", | |||
"eslint": "4.16.0", | |||
"lwc-language-server": "1.5.1", | |||
"lwc-language-server": "1.6.7", |
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.
@rsalvador - This should be the main change from your side.
@@ -80,7 +80,7 @@ class ForceLightningLwcCreateExecutor extends (SfdxCommandletExecutor as { | |||
return new SfdxCommandBuilder() | |||
.withDescription(nls.localize('force_lightning_lwc_create_text')) | |||
.withArg('force:lightning:component:create') | |||
.withFlag('--type', 'web') | |||
.withFlag('--type', 'lwc') |
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.
This is the new flag for the CLI. This naming change aligns better with our messaging.
Codecov Report
@@ Coverage Diff @@
## develop #660 +/- ##
========================================
Coverage 74.83% 74.83%
========================================
Files 158 158
Lines 6405 6405
Branches 1001 1001
========================================
Hits 4793 4793
Misses 1357 1357
Partials 255 255 Continue to review full report at Codecov.
|
What does this PR do?
Uses the latest version of LWC for Winter '19.
What issues does this PR fix or reference?
@W-5487489@