diff options
author | 2024-08-08 05:54:04 -0400 | |
---|---|---|
committer | 2024-08-08 17:54:04 +0800 | |
commit | 4c1b769bcf0da535b9c754162ece3afedc10d822 (patch) | |
tree | 090c3e1ffb698e2bcd28375aab1769df685cd90b /packages/integrations/tailwind/src | |
parent | 9aaf58c1339b54f2c1394e718a0f6f609f0b6342 (diff) | |
download | astro-4c1b769bcf0da535b9c754162ece3afedc10d822.tar.gz astro-4c1b769bcf0da535b9c754162ece3afedc10d822.tar.zst astro-4c1b769bcf0da535b9c754162ece3afedc10d822.zip |
chore: bump typescript-eslint to v8 (#11649)
Diffstat (limited to 'packages/integrations/tailwind/src')
-rw-r--r-- | packages/integrations/tailwind/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/tailwind/src/index.ts b/packages/integrations/tailwind/src/index.ts index 1da44f5dd..c52e1f6e5 100644 --- a/packages/integrations/tailwind/src/index.ts +++ b/packages/integrations/tailwind/src/index.ts @@ -15,7 +15,7 @@ async function getPostCssConfig( const searchPath = typeof postcssInlineOptions === 'string' ? postcssInlineOptions : root!; try { postcssConfigResult = await postcssrc({}, searchPath); - } catch (e) { + } catch { postcssConfigResult = null; } } |