Skip to content

Commit 53e8a2b

Browse files
committed
remove unnecessary
1 parent 6c963cb commit 53e8a2b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dev-packages/e2e-tests/lib/copyToTemp.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function fixPackageJson(cwd: string): void {
4545
writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
4646
}
4747

48-
function fixFileLinkDependencies(dependencyObj: Record<string, string>): boolean {
48+
function fixFileLinkDependencies(dependencyObj: Record<string, string>): void {
4949
for (const [key, value] of Object.entries(dependencyObj)) {
5050
if (value.startsWith('link:')) {
5151
const dirPath = value.replace('link:', '');
@@ -58,6 +58,4 @@ function fixFileLinkDependencies(dependencyObj: Record<string, string>): boolean
5858
console.log(`Fixed ${key} dependency to ${newPath}`);
5959
}
6060
}
61-
62-
return false;
6361
}

0 commit comments

Comments
 (0)