Skip to content

Commit 80a803d

Browse files
committed
Clean up outputs a little
1 parent 8c41639 commit 80a803d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

bin/zip.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ const versionDirName = `${archiveName}${archiveVersion}`.replace(/[ .]/g, "_");
5656
const zipFileName = `${versionDirName}.zip`;
5757
const zipFile = new URL(`_builds/${zipFileName}`, config.configFileUrl);
5858

59-
console.log({
60-
archiveName,
61-
archiveVersion,
62-
versionDirName,
63-
zipFile,
64-
zipFileName,
65-
});
59+
// console.log({
60+
// archiveName,
61+
// archiveVersion,
62+
// versionDirName,
63+
// zipFile,
64+
// zipFileName,
65+
// });
6666

6767
ensureFileSync(zipFile.pathname);
6868
const output = createWriteStream(zipFile);

lib/devserver-proxy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export async function devserverProxy(config) {
2424
console.log(
2525
chalk.cyan.bold(
2626
`PORT FROM DEVSERVER-PROXY: TRUE ${localPort.port}`,
27-
target,
27+
// target,
2828
),
2929
);
3030
}
@@ -49,7 +49,7 @@ export async function devserverProxy(config) {
4949
"PORT FROM DEVSERVER-PROXY:",
5050
chalk.cyan(config.proxy),
5151
chalk.bold(localPort.port),
52-
target,
52+
// target,
5353
);
5454
}
5555
}

0 commit comments

Comments
 (0)