summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <ematipico@users.noreply.github.com> 2024-08-20 06:46:46 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-08-20 06:46:46 +0000
commitb5584248b1b5bc7b6a99d207f6eb6edee6f957f8 (patch)
tree547f24fef5bc81841a0c71bfcab1c49ff1fd0523
parent86a33915ff41b23ff6b35bcfb1805fefc0760ca7 (diff)
downloadastro-b5584248b1b5bc7b6a99d207f6eb6edee6f957f8.tar.gz
astro-b5584248b1b5bc7b6a99d207f6eb6edee6f957f8.tar.zst
astro-b5584248b1b5bc7b6a99d207f6eb6edee6f957f8.zip
[ci] format
-rw-r--r--packages/astro/src/integrations/features-validation.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/src/integrations/features-validation.ts b/packages/astro/src/integrations/features-validation.ts
index bd08a876d..e0613c6e8 100644
--- a/packages/astro/src/integrations/features-validation.ts
+++ b/packages/astro/src/integrations/features-validation.ts
@@ -124,7 +124,10 @@ function validateSupportKind(
}
function featureIsUnsupported(adapterName: string, logger: Logger, featureName: string) {
- logger.error('config', `The adapter ${adapterName} doesn't currently support the feature "${featureName}".`);
+ logger.error(
+ 'config',
+ `The adapter ${adapterName} doesn't currently support the feature "${featureName}".`,
+ );
}
function featureIsExperimental(adapterName: string, logger: Logger, featureName: string) {