summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2023-12-01 16:26:16 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-12-01 16:26:16 +0000
commit7cf5e7523db3126d0b8be1192d8507f9c0a30ab3 (patch)
tree26f7901ec7cf0ac16d365ad7598cd9ea77b5792c
parent5ab008da8fcf3e83a6a4515a14b6500d6a6e7de3 (diff)
downloadastro-7cf5e7523db3126d0b8be1192d8507f9c0a30ab3.tar.gz
astro-7cf5e7523db3126d0b8be1192d8507f9c0a30ab3.tar.zst
astro-7cf5e7523db3126d0b8be1192d8507f9c0a30ab3.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/astro/src/runtime/client/dev-overlay/settings.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/astro/src/runtime/client/dev-overlay/settings.ts b/packages/astro/src/runtime/client/dev-overlay/settings.ts
index c67f3e978..d3f1c0d36 100644
--- a/packages/astro/src/runtime/client/dev-overlay/settings.ts
+++ b/packages/astro/src/runtime/client/dev-overlay/settings.ts
@@ -25,7 +25,11 @@ function getSettings() {
function log(message: string) {
// eslint-disable-next-line no-console
- console.log(`%cAstro`, 'background: linear-gradient(66.77deg, #D83333 0%, #F041FF 100%); color: white; padding-inline: 4px; border-radius: 2px; font-family: monospace;', message);
+ console.log(
+ `%cAstro`,
+ 'background: linear-gradient(66.77deg, #D83333 0%, #F041FF 100%); color: white; padding-inline: 4px; border-radius: 2px; font-family: monospace;',
+ message
+ );
}
return {
@@ -33,6 +37,6 @@ function getSettings() {
return _settings;
},
updateSetting,
- log
+ log,
};
}