fix: improve codebase handling by ignoring creating lock and bundle

This commit is contained in:
Ruben Fiszel
2024-07-30 20:22:25 +02:00
parent 29e546f66d
commit 0fcbfefb3e
2 changed files with 4 additions and 2 deletions

View File

@@ -160,7 +160,7 @@ export async function handleFile(
format: "esm",
bundle: true,
write: false,
platform: 'node',
platform: "node",
});
bundleContent = out.outputFiles[0].text;
log.info(`Finished building the bundle for ${path}`);
@@ -430,6 +430,7 @@ export const exts = [
".sql",
".gql",
".ps1",
".php",
];
export function removeExtensionToPath(path: string): string {