Skip to content

Commit

Permalink
fix: pass full paths for file resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Dec 5, 2024
1 parent a307fc3 commit ea41f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sourceTracking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export class SourceTracking extends AsyncCreatable {
if (options.format === 'ChangeResultWithPaths') {
return populateFilePaths({
elements: filteredChanges.map(remoteChangeElementToChangeResult),
packageDirPaths: this.project.getPackageDirectories().map((pkgDir) => pkgDir.path),
packageDirPaths: this.project.getPackageDirectories().map((pkgDir) => pkgDir.fullPath),
registry: this.registry,
});
}
Expand Down

0 comments on commit ea41f30

Please sign in to comment.