Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 899 Bytes

File metadata and controls

22 lines (14 loc) · 899 Bytes

Update to @babel/parser 7.12 (#9408 by @sosukesuzuki)

Updated the JavaScript parser to @babel/parser 7.12. This fixes several bugs and supports some new syntax.

Support Import Assertions

The "module attributes" proposal supported on 2.1 has been significantly changed and also renamed to "import assertions".

import json from "./foo.json" assert { type: "json" };
Support imports and exports with string names

Due to a bug in @babel/parser, Prettier can only use exports, but that will be fixed.

let happy = "happy";
export { happy as "😃" };