From 7b3047f09761a0265d63ba3d51dbf7a07660b468 Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 25 Jun 2021 13:31:17 +0000 Subject: [PATCH] [ci] yarn format --- packages/astro/src/compiler/codegen/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/compiler/codegen/index.ts b/packages/astro/src/compiler/codegen/index.ts index e61d0ee082..8e1edf7632 100644 --- a/packages/astro/src/compiler/codegen/index.ts +++ b/packages/astro/src/compiler/codegen/index.ts @@ -201,7 +201,7 @@ async function compileExpression(node: Expression, state: CodegenState, compileO } } const location = { start: node.start, end: node.end }; - let code = transpileExpressionSafe("(" + raw + ")", { state, compileOptions, location }); + let code = transpileExpressionSafe('(' + raw + ')', { state, compileOptions, location }); if (code === null) throw new Error(`Unable to compile expression`); code = code.trim().replace(/\;$/, ''); return code;