When using the build command on Typescript files, there is some console output even when the quiet flag is passed.
jamiedavenport@Jamies-MBP ~/ncc-test ncc version
0.24.1
jamiedavenport@Jamies-MBP ~/ncc-test ncc build --quiet index.ts
ncc: Using [email protected] (ncc built-in)
jamiedavenport@Jamies-MBP ~/ncc-test ncc build index.ts --quiet
ncc: Using [email protected] (ncc built-in)
jamiedavenport@Jamies-MBP ~/ncc-test
index.ts
console.log("Hello, World");
I believe the issue is here where console.log should be wrapped in some kind of if(!quiet) check.
When using the
buildcommand on Typescript files, there is some console output even when thequietflag is passed.index.tsI believe the issue is here where
console.logshould be wrapped in some kind ofif(!quiet)check.