fix: allow setting token for default registry

This commit is contained in:
Herman Jensen 2025-01-10 12:40:59 +01:00 committed by GitHub
parent 6fb6603cc1
commit 748b1fd9f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ export function createBunfig(options: BunfigOptions): string | null {
} }
if (url && !owner) { if (url && !owner) {
return `[install]${EOL}registry = "${url}"${EOL}`; return `[install]${EOL}registry = { token = "$BUN_AUTH_TOKEN", url = "${url}"}${EOL}`;
} }
return null; return null;