0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00

[ci] format

This commit is contained in:
Nate Moore 2023-12-01 16:26:16 +00:00 committed by astrobot-houston
parent 5ab008da8f
commit 7cf5e7523d

View file

@ -25,7 +25,11 @@ function getSettings() {
function log(message: string) { function log(message: string) {
// eslint-disable-next-line no-console // 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 { return {
@ -33,6 +37,6 @@ function getSettings() {
return _settings; return _settings;
}, },
updateSetting, updateSetting,
log log,
}; };
} }