Skip to content
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

Revert "Update lightning component command text #774" #778

Merged
merged 2 commits into from
Nov 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ These Salesforce CLI commands are available:
- `force:data:soql:query`: **SFDX: Execute SOQL Query with Currently Selected Text**
- `force:data:soql:query ...`: **SFDX: Execute SOQL Query...**
- `force:lightning:app:create ...`: **SFDX: Create Lightning App**
- `force:lightning:component:create ...`: **SFDX: Create Aura Component**
- `force:lightning:component:create ...`: **SFDX: Create Lightning Component**
- `force:lightning:event:create ...`: **SFDX: Create Lightning Event**
- `force:lightning:interface:create ...`: **SFDX: Create Lightning Interface**
- `force:org:create --setdefaultusername ...`: **SFDX: Create a Default Scratch Org**
Expand Down
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-core/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"SFDX: Create Visualforce Component",
"force_visualforce_page_create_text": "SFDX: Create Visualforce Page",
"force_lightning_app_create_text": "SFDX: Create Lightning App",
"force_lightning_component_create_text": "SFDX: Create Aura Component",
"force_lightning_component_create_text": "SFDX: Create Lightning Component",
"force_lightning_event_create_text": "SFDX: Create Lightning Event",
"force_lightning_interface_create_text": "SFDX: Create Lightning Interface",
"force_source_status_local_text": "SFDX: View Local Changes",
Expand Down
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-core/src/messages/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const messages = {
force_visualforce_component_create_text: 'SFDX: Create Visualforce Component',
force_visualforce_page_create_text: 'SFDX: Create Visualforce Page',
force_lightning_app_create_text: 'SFDX: Create Lightning App',
force_lightning_component_create_text: 'SFDX: Create Aura Component',
force_lightning_component_create_text: 'SFDX: Create Lightning Component',
force_lightning_event_create_text: 'SFDX: Create Lightning Event',
force_lightning_interface_create_text: 'SFDX: Create Lightning Interface',
force_source_status_local_text: 'SFDX: View Local Changes',
Expand Down
4 changes: 2 additions & 2 deletions packages/system-tests/scenarios/scaffolding.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ describe('Scaffolding commands', () => {
});

it('Should create Lightning component', async () => {
// Invoke SFDX: Create Aura Component command by name
// Invoke SFDX: Create Lightning Component command by name
await app.command('workbench.action.quickOpen');
await common.type('>SFDX: Create Aura Component');
await common.type('>SFDX: Create Lightning Component');
await app.client.keys(['NULL', 'Enter', 'NULL'], false);
await app.wait();

Expand Down