diff options
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 { |