goldstein 7.0.4 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2026.02.12, v7.1.0
2
+
3
+ feature:
4
+ - a3adcd8 goldstein: export-default-from: add support
5
+
1
6
  2026.02.11, v7.0.4
2
7
 
3
8
  feature:
package/README.md CHANGED
@@ -520,6 +520,20 @@ The same as:
520
520
  export const x = () => {};
521
521
  ```
522
522
 
523
+ ### `export default from`
524
+
525
+ [ECMAScript Proposal: export default from](https://github.com/tc39/proposal-export-default-from).
526
+
527
+ ```js
528
+ export hello from './x.js';
529
+ ```
530
+
531
+ The same as:
532
+
533
+ ```js
534
+ export {default} from './x.js';
535
+ ```
536
+
523
537
  ### Wrong brace `)`
524
538
 
525
539
  ```diff