summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Tony Sullivan <tony.f.sullivan@outlook.com> 2022-09-07 16:33:57 +0000
committerGravatar GitHub <noreply@github.com> 2022-09-07 16:33:57 +0000
commit93c3aee01c95c60b1c7e8b7b7b2cc79ae6069bed (patch)
tree6d2659480aa36382aea02969ab3eb365ab035f66
parent6ca0c5839fba22c931a2ce92e282d4e5396ba510 (diff)
downloadastro-93c3aee01c95c60b1c7e8b7b7b2cc79ae6069bed.tar.gz
astro-93c3aee01c95c60b1c7e8b7b7b2cc79ae6069bed.tar.zst
astro-93c3aee01c95c60b1c7e8b7b7b2cc79ae6069bed.zip
fixes an eslint error (#4659)
-rw-r--r--packages/astro/src/core/create-vite.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/create-vite.ts b/packages/astro/src/core/create-vite.ts
index e93fd7fb9..8ee301344 100644
--- a/packages/astro/src/core/create-vite.ts
+++ b/packages/astro/src/core/create-vite.ts
@@ -243,7 +243,7 @@ class DependencyWalker {
dir = parentDir;
}
- } catch (e) {
+ } catch {
// Give up! Who knows where the `package.json` is…
}
}