diff options
author | 2021-03-30 09:24:26 -0400 | |
---|---|---|
committer | 2021-03-30 09:24:26 -0400 | |
commit | a79f7d40774360e134c5b5da97610ad17c8d5770 (patch) | |
tree | b987d0e616c13511092756d8e92c21d00e5fc7c4 /src/compiler/codegen.ts | |
parent | f11fd265f85c365c43a8e6f8d76524f14909ebf3 (diff) | |
download | astro-a79f7d40774360e134c5b5da97610ad17c8d5770.tar.gz astro-a79f7d40774360e134c5b5da97610ad17c8d5770.tar.zst astro-a79f7d40774360e134c5b5da97610ad17c8d5770.zip |
Bundling! 🤘 (#36)
* Bundling! 🤘
* Finalize build changes
Diffstat (limited to 'src/compiler/codegen.ts')
-rw-r--r-- | src/compiler/codegen.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/compiler/codegen.ts b/src/compiler/codegen.ts index f42968b1a..febb0a514 100644 --- a/src/compiler/codegen.ts +++ b/src/compiler/codegen.ts @@ -9,9 +9,7 @@ import path from 'path'; import { walk } from 'estree-walker'; import babelParser from '@babel/parser'; import _babelGenerator from '@babel/generator'; -import traverse from '@babel/traverse'; -import { ImportDeclaration, ExportNamedDeclaration, VariableDeclarator, Identifier, VariableDeclaration } from '@babel/types'; -import { type } from 'node:os'; +import { ImportDeclaration, ExportNamedDeclaration, VariableDeclarator, Identifier } from '@babel/types'; const babelGenerator: typeof _babelGenerator = // @ts-ignore |