Skip to content

Commit bf3d548

Browse files
Merge pull request #1397 from salesforcecli/er/bump-sdr
fix: bump libs
2 parents c7546fb + 7e16bc4 commit bf3d548

File tree

3 files changed

+753
-657
lines changed

3 files changed

+753
-657
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@salesforce/kit": "^3.2.3",
1414
"@salesforce/plugin-info": "^3.4.67",
1515
"@salesforce/sf-plugins-core": "^12.2.2",
16-
"@salesforce/source-deploy-retrieve": "^12.19.10",
16+
"@salesforce/source-deploy-retrieve": "^12.21.0",
1717
"@salesforce/source-tracking": "^7.4.1",
1818
"@salesforce/ts-types": "^2.0.12",
1919
"ansis": "^3.17.0",

src/utils/convertBehavior.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const getSourceComponentFiles = (c: SourceComponent): string[] =>
118118
[c.xml, ...(c.content ? fullPathsFromDir(c.content) : [])].filter(isString);
119119

120120
const fullPathsFromDir = (dir: string): string[] =>
121-
readdirSync(dir, { withFileTypes: true }).map((d) => join(d.path, d.name));
121+
readdirSync(dir, { withFileTypes: true }).map((d) => join(d.parentPath, d.name));
122122

123123
/** build a component set from the original project for each pkgDir */
124124
const componentSetFromPackageDirectory =

0 commit comments

Comments
 (0)