We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4c71e5 commit 0c28eb5Copy full SHA for 0c28eb5
packages/astro/src/core/logger/core.ts
@@ -105,7 +105,7 @@ if (typeof process !== 'undefined') {
105
// NodeJS.process. This code treats it as a plain object so TS doesn't let us
106
// get away with incorrect assumptions.
107
let proc: object = process;
108
- if('argv' in proc && Array.isArray(proc.argv)) {
+ if ('argv' in proc && Array.isArray(proc.argv)) {
109
if (proc.argv.includes('--verbose')) {
110
defaultLogLevel = 'debug';
111
} else if (proc.argv.includes('--silent')) {
0 commit comments