We can run below query in developer console query editor. It will return all the aura component name in DeveloperName column. SELECT Id, DeveloperName, MasterLabel FROM AuraDefinitionBundle Now we can edit Developer Name, MasterLabel and save it. It will reflect all the place wherever the component is used. If you are using the component in controller and helper, It …
Category: Salesforce
Salesforce Related
Permanent link to this article: https://salesforcebuddy.com/2020/01/how-to-rename-lightning-component/
Apr 04
Salesforce Deployment Using ANT Migration Tool – Part 3
Please follow the steps below to setup ant in your machine Download ANT from http://ant.apache.org/bindownload.cgi Extract the downloaded zip file somewhere like C:\apache-ant-1.9.4-bin\apache-ant-1.9.4 Set this path in system variables as ANT_HOME. If PATH system variable already exists then add %ANT_HOME% to your path variable, else add new PATH variable and keep this value. Also create a JAVA_HOME environment …
Permanent link to this article: https://salesforcebuddy.com/2019/04/salesforce-deployment-using-ant-migration-tool-part-3/
Apr 04
Salesforce Deployment Using ANT Migration Tool – Part 2
Below is an example. We will first retrieve the components from source org and then will deploy those components to the target org. Here is the folder that we have initially. We have build.xml and build.properties file here and one folder named “unpackaged” in which we have our package.xml. This package.xml file contains the list …
Permanent link to this article: https://salesforcebuddy.com/2019/04/salesforce-deployment-using-ant-migration-tool-part-2/