Skip to content

Commit

Permalink
fix: some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhinavKumar-sf committed Oct 28, 2024
1 parent 794d819 commit e7c2432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/migration/related/LwcMigration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class LwcMigration extends BaseRelatedObjectMigration {
const type = 'assessment';
const pwd = shell.pwd();
shell.cd(this.projectPath);
// sfProject.retrieve(LWCTYPE, this.org.getUsername());
sfProject.retrieve(LWCTYPE, this.org.getUsername());
const filesMap = this.processLwcFiles(this.projectPath);
shell.cd(pwd);
return this.processFiles(filesMap, type);
Expand Down Expand Up @@ -59,7 +59,7 @@ export class LwcMigration extends BaseRelatedObjectMigration {
const jsonData: LWCAssessmentInfo[] = [];
fileMap.forEach((fileList, dir) => {
const changeInfos: FileChangeInfo[] = [];
if (dir !== 'lwc' && !dir.endsWith('English') && !dir.includes('_')) {
if (dir !== 'lwc' && !dir.endsWith('English') && !dir.includes('_') && !dir.includes('cf')) {
for (const file of fileList) {
if (this.isValideFile(file.name)) {
const processor = FileProcessorFactory.getFileProcessor(file.ext);
Expand Down

0 comments on commit e7c2432

Please sign in to comment.