Skip to content

Commit 5405aee

Browse files
committed
clear console log in script file
1 parent 9508cfc commit 5405aee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/preparePkgRoot.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
const fs = require("node:fs");
77
const path = require("node:path");
8-
console.log("process.cwd --> ", process.cwd());
8+
// console.log("process.cwd --> ", process.cwd());
99
const pkgJson = require("../package.json");
1010

1111
function run() {
@@ -23,7 +23,7 @@ function run() {
2323
}
2424

2525
const tarballPkgJsonPath = path.resolve(process.cwd(), "./package.json");
26-
console.log({ tarballPkgJsonPath });
26+
// console.log({ tarballPkgJsonPath });
2727
fs.writeFileSync(
2828
tarballPkgJsonPath,
2929
Buffer.from(JSON.stringify(pkgJson, null, 2), "utf-8")

0 commit comments

Comments
 (0)