diff options
author | 2021-07-07 20:10:09 +0000 | |
---|---|---|
committer | 2021-07-07 20:10:09 +0000 | |
commit | 1bbe98ae54eb6018184fdc3875fe689775510ad6 (patch) | |
tree | eb8500d84704793c0d5b711f2e8f1b3822a83532 /packages/astro-parser/src/parse/index.ts | |
parent | 53fcae1a9a26e3e2e9d6aca7ec71acc13a3556ea (diff) | |
download | astro-1bbe98ae54eb6018184fdc3875fe689775510ad6.tar.gz astro-1bbe98ae54eb6018184fdc3875fe689775510ad6.tar.zst astro-1bbe98ae54eb6018184fdc3875fe689775510ad6.zip |
[ci] yarn format
Diffstat (limited to 'packages/astro-parser/src/parse/index.ts')
-rw-r--r-- | packages/astro-parser/src/parse/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro-parser/src/parse/index.ts b/packages/astro-parser/src/parse/index.ts index 5718a2c74..9b9f87073 100644 --- a/packages/astro-parser/src/parse/index.ts +++ b/packages/astro-parser/src/parse/index.ts @@ -29,7 +29,7 @@ export class Parser { js: Script[] = []; meta_tags = {}; last_auto_closed_tag?: LastAutoClosedTag; - feature_flags: 0 + feature_flags: 0; constructor(template: string, options: ParserOptions) { if (typeof template !== 'string') { @@ -268,7 +268,7 @@ export default function parse(template: string, options: ParserOptions = {}): As // instance: instance_scripts[0], module: astro_scripts[0], meta: { - features: parser.feature_flags - } + features: parser.feature_flags, + }, }; } |