Skip to content

Commit 4ca9a5d

Browse files
committed
[check-package.json] Remove the "Disposing temporary dir." message for now.
This always shows up at the end and is more confusing than helpful.
1 parent 24c0b85 commit 4ca9a5d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/bin/package.json/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,8 @@ console.log("Checking paths of binaries and exports:");
465465
const tempDir = await Path.makeTempDir();
466466
await using tempDirDisposable = {
467467
[Symbol.asyncDispose]: async () => {
468-
console.log("Disposing temporary dir.");
468+
// TODO: implement an option to keep/open the temporary dir.
469+
// console.log("Disposing temporary dir.");
469470
await tempDir.rm_rf();
470471
},
471472
};

0 commit comments

Comments
 (0)