diff options
author | 2025-02-06 15:08:28 +0000 | |
---|---|---|
committer | 2025-02-06 15:08:28 +0000 | |
commit | 4e7d97fb09f8180572fca5d823ad8edcda7b50b4 (patch) | |
tree | 25d9d0e0f229aa80d3b3ae223529bc6f4a0f0485 /packages/integrations/netlify/src/lib/nft.ts | |
parent | db32b913bfaae405dae2146b11ed6b0754f6c883 (diff) | |
download | astro-4e7d97fb09f8180572fca5d823ad8edcda7b50b4.tar.gz astro-4e7d97fb09f8180572fca5d823ad8edcda7b50b4.tar.zst astro-4e7d97fb09f8180572fca5d823ad8edcda7b50b4.zip |
[ci] format
Diffstat (limited to 'packages/integrations/netlify/src/lib/nft.ts')
-rw-r--r-- | packages/integrations/netlify/src/lib/nft.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/netlify/src/lib/nft.ts b/packages/integrations/netlify/src/lib/nft.ts index c0584fd92..249637e83 100644 --- a/packages/integrations/netlify/src/lib/nft.ts +++ b/packages/integrations/netlify/src/lib/nft.ts @@ -23,7 +23,7 @@ export async function copyDependenciesToFunction( root: URL; }, // we want to pass the caching by reference, and not by value - cache: object + cache: object, ): Promise<{ handler: string }> { const entryPath = fileURLToPath(entry); logger.info(`Bundling function ${relative(fileURLToPath(outDir), entryPath)}`); @@ -54,11 +54,11 @@ export async function copyDependenciesToFunction( if (entryPath === file) { logger.debug( - `The module "${module}" couldn't be resolved. This may not be a problem, but it's worth checking.` + `The module "${module}" couldn't be resolved. This may not be a problem, but it's worth checking.`, ); } else { logger.debug( - `The module "${module}" inside the file "${file}" couldn't be resolved. This may not be a problem, but it's worth checking.` + `The module "${module}" inside the file "${file}" couldn't be resolved. This may not be a problem, but it's worth checking.`, ); } } @@ -73,7 +73,7 @@ export async function copyDependenciesToFunction( const commonAncestor = await copyFilesToFolder( [...result.fileList].map((file) => new URL(file, base)).concat(includeFiles), outDir, - excludeFiles + excludeFiles, ); return { |