From ba4eefdd0986354461d59cf7f8b359b64c998682 Mon Sep 17 00:00:00 2001 From: Mark Howard Date: Thu, 26 Aug 2021 15:24:31 +1200 Subject: [PATCH] updated comment 'threw' to 'through' (#1235) --- packages/astro/src/external.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/external.ts b/packages/astro/src/external.ts index 577d482157..a7c3230049 100644 --- a/packages/astro/src/external.ts +++ b/packages/astro/src/external.ts @@ -21,7 +21,7 @@ const isAstroRenderer = (name: string) => { const denyList = ['prismjs/components/index.js', '@astrojs/markdown-support', 'node:fs/promises', ...nodeBuiltinsMap.values()]; export default Object.keys(pkg.dependencies) - // Filter out packages that should be loaded threw Snowpack + // Filter out packages that should be loaded through Snowpack .filter((name) => { // Explicitly allowed packages should NOT be external if (allowList.has(name)) return false;