File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ instance RenderJS JSImportSpecifier where
304
304
(|>) pacc (JSImportSpecifierAs x1 annot x2) = pacc |> x1 |> annot |> " as" |> x2
305
305
306
306
instance RenderJS JSExportDeclaration where
307
- (|>) pacc (JSExport x1 s) = pacc |> " " |> x1 |> s
307
+ (|>) pacc (JSExport x1 s) = pacc |> x1 |> s
308
308
(|>) pacc (JSExportLocals xs semi) = pacc |> xs |> semi
309
309
(|>) pacc (JSExportFrom xs from semi) = pacc |> xs |> from |> semi
310
310
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ instance MinifyJS JSImportSpecifier where
310
310
instance MinifyJS JSExportDeclaration where
311
311
fix a (JSExportFrom x1 from _) = JSExportFrom (fix a x1) (fix a from) noSemi
312
312
fix _ (JSExportLocals x1 _) = JSExportLocals (fix emptyAnnot x1) noSemi
313
- fix _ (JSExport x1 _) = JSExport (fixStmt emptyAnnot noSemi x1) noSemi
313
+ fix _ (JSExport x1 _) = JSExport (fixStmt spaceAnnot noSemi x1) noSemi
314
314
315
315
instance MinifyJS JSExportClause where
316
316
fix a (JSExportClause _ x1 _) = JSExportClause emptyAnnot (fixEmpty x1) a
You can’t perform that action at this time.
0 commit comments