summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/external.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/external.ts b/packages/astro/src/external.ts
index 577d48215..a7c323004 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;