0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

Protect against shimmed process usage in Vercel Edge (#5969)

* Protect against shimmed process usage in Vercel Edge

* Adding a changeset
This commit is contained in:
Matthew Phillips 2023-01-24 21:11:09 -05:00 committed by GitHub
parent 4d1e4f6d96
commit f4c71e5eb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 4 deletions

View file

@ -0,0 +1,7 @@
---
'astro': patch
---
Fix usage of logger in Vercel Edge
This protects against usage of `process` global in shimmed environments.

View file

@ -101,10 +101,18 @@ function padStr(str: string, len: number) {
export let defaultLogLevel: LoggerLevel; export let defaultLogLevel: LoggerLevel;
if (typeof process !== 'undefined') { if (typeof process !== 'undefined') {
if (process.argv.includes('--verbose')) { // This could be a shimmed environment so we don't know that `process` is the full
defaultLogLevel = 'debug'; // NodeJS.process. This code treats it as a plain object so TS doesn't let us
} else if (process.argv.includes('--silent')) { // get away with incorrect assumptions.
defaultLogLevel = 'silent'; let proc: object = process;
if('argv' in proc && Array.isArray(proc.argv)) {
if (proc.argv.includes('--verbose')) {
defaultLogLevel = 'debug';
} else if (proc.argv.includes('--silent')) {
defaultLogLevel = 'silent';
} else {
defaultLogLevel = 'info';
}
} else { } else {
defaultLogLevel = 'info'; defaultLogLevel = 'info';
} }