[SalesForce] lwc: sfdx unable to retrieve lwc files

I am currently working in a dev org and I have installed the LWC e-bike component (https://github.com/trailheadapps/ebikes-lwc/tree/master/force-app/main/default/lwc/orderBuilder)

When I create the sfdx project and retrieve the metadata the folder for LWC is empty.

If I create a new LWC through sfdx, it is created without a problem, however, I notice that it is not like lightnining components, were if you manually delete a file you can right click in the folder and hit retrieve and the files appears again.

Is there a trick to be able to retrieve these metadata?

I have added the below into the manifest, as that is what the documentation says that represent the Lightning web component bundle

<types>
    <members>*</members>
    <name>LightningComponentBundle</name>
</types>

But it doesnt do a thing

EDIT
This is my current version when i run

sfdx plugins --core

enter image description here

Best Answer

You can even use :

$ sfdx force:source:retrieve -m LightningComponentBundle
Related Topic