From ea41f30c8fbfed6f6c18ab5e5a7a7654424451d8 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Thu, 5 Dec 2024 08:03:42 -0600 Subject: [PATCH] fix: pass full paths for file resolution --- src/sourceTracking.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sourceTracking.ts b/src/sourceTracking.ts index 7e431dce..6a578c4f 100644 --- a/src/sourceTracking.ts +++ b/src/sourceTracking.ts @@ -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, }); }