Split production node_modules

This commit is contained in:
colinmcneil
2024-12-17 14:56:25 -05:00
committed by Jim Clark
parent 9ff603aef5
commit 4e8a8d270a
14 changed files with 92 additions and 47 deletions

View File

@@ -183,9 +183,9 @@ const credentialsPath = process.env.GDRIVE_CREDENTIALS_PATH || path.join(
async function authenticateAndSaveCredentials() {
console.log("Launching auth flow…");
const auth = await authenticate({
keyfilePath: path.join(
keyfilePath: process.env.GDRIVE_OAUTH_PATH || path.join(
path.dirname(new URL(import.meta.url).pathname),
process.env.GDRIVE_OAUTH_PATH || "../../../gcp-oauth.keys.json",
"../../../gcp-oauth.keys.json",
),
scopes: ["https://www.googleapis.com/auth/drive.readonly"],
});