summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/integrations/deno/src/index.ts4
-rw-r--r--packages/integrations/netlify/src/integration-edge-functions.ts2
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/deno/src/index.ts b/packages/integrations/deno/src/index.ts
index a104ba863..9a6df4f76 100644
--- a/packages/integrations/deno/src/index.ts
+++ b/packages/integrations/deno/src/index.ts
@@ -12,7 +12,7 @@ interface Options {
const SHIM = `globalThis.process = {
argv: [],
env: Deno.env.toObject(),
-};`
+};`;
export function getAdapter(args?: Options): AstroAdapter {
return {
@@ -70,7 +70,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
external: ['@astrojs/markdown-remark'],
banner: {
js: SHIM,
- }
+ },
});
// Remove chunks, if they exist. Since we have bundled via esbuild these chunks are trash.
diff --git a/packages/integrations/netlify/src/integration-edge-functions.ts b/packages/integrations/netlify/src/integration-edge-functions.ts
index 17eaf8350..b3f27997d 100644
--- a/packages/integrations/netlify/src/integration-edge-functions.ts
+++ b/packages/integrations/netlify/src/integration-edge-functions.ts
@@ -85,7 +85,7 @@ async function bundleServerEntry(buildConfig: BuildConfig, vite: any) {
external: ['@astrojs/markdown-remark'],
banner: {
js: SHIM,
- }
+ },
});
// Remove chunks, if they exist. Since we have bundled via esbuild these chunks are trash.