Skip to content

Commit ea41f30

Browse files
committed
fix: pass full paths for file resolution
1 parent a307fc3 commit ea41f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sourceTracking.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export class SourceTracking extends AsyncCreatable {
330330
if (options.format === 'ChangeResultWithPaths') {
331331
return populateFilePaths({
332332
elements: filteredChanges.map(remoteChangeElementToChangeResult),
333-
packageDirPaths: this.project.getPackageDirectories().map((pkgDir) => pkgDir.path),
333+
packageDirPaths: this.project.getPackageDirectories().map((pkgDir) => pkgDir.fullPath),
334334
registry: this.registry,
335335
});
336336
}

0 commit comments

Comments
 (0)