--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/range/module-export2.js --- # Input ```js import def , {named} from 'x' export * from 'd' export const x = 42 export default 42 ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,7 +1,8 @@ -import def, { named } from "x"; +import def , {named} from 'x' -export * from "d"; +export * from 'd' export const x = 42; -export default 42; +export default 42 + ``` # Output ```js import def , {named} from 'x' export * from 'd' export const x = 42; export default 42 ```