diff options
author | 2021-06-07 16:05:13 -0400 | |
---|---|---|
committer | 2021-06-07 16:05:13 -0400 | |
commit | 5cc90f9dc1dfb52ac7fe0781682b2cc8acf2543d (patch) | |
tree | 52040facc09f55f67e4b79edadc42f50fd7f1ec0 /packages/astro/src/compiler/transform/index.ts | |
parent | cc532cddde058f381cb9c115fc2945833601f905 (diff) | |
download | astro-5cc90f9dc1dfb52ac7fe0781682b2cc8acf2543d.tar.gz astro-5cc90f9dc1dfb52ac7fe0781682b2cc8acf2543d.tar.zst astro-5cc90f9dc1dfb52ac7fe0781682b2cc8acf2543d.zip |
Move parser to the scoped package name (#319)
* Move parser to the scoped package name
* Prettier plugin should use 0.12 of the parser
Diffstat (limited to 'packages/astro/src/compiler/transform/index.ts')
-rw-r--r-- | packages/astro/src/compiler/transform/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/compiler/transform/index.ts b/packages/astro/src/compiler/transform/index.ts index 9df050ee5..c9943cc5f 100644 --- a/packages/astro/src/compiler/transform/index.ts +++ b/packages/astro/src/compiler/transform/index.ts @@ -1,4 +1,4 @@ -import type { Ast, TemplateNode } from 'astro-parser'; +import type { Ast, TemplateNode } from '@astrojs/parser'; import type { NodeVisitor, TransformOptions, Transformer, VisitorFn } from '../../@types/transformer'; import { walk } from 'estree-walker'; |