@putout/printer 17.3.0 → 17.4.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.11, v17.4.0
2
+
3
+ feature:
4
+ - 2bcb1e2 @putout/printer: ExportAllDeclaration: import attributes
5
+
1
6
  2026.02.11, v17.3.0
2
7
 
3
8
  feature:
@@ -1,5 +1,9 @@
1
- export const ExportAllDeclaration = (path, {print}) => {
1
+ import {printAttributes} from '#import-attributes';
2
+
3
+ export const ExportAllDeclaration = (path, printer) => {
4
+ const {print} = printer;
2
5
  const {exportKind} = path.node;
6
+
3
7
  print('export ');
4
8
 
5
9
  if (exportKind === 'type')
@@ -7,6 +11,7 @@ export const ExportAllDeclaration = (path, {print}) => {
7
11
 
8
12
  print('* from ');
9
13
  print('__source');
14
+ printAttributes(path, printer);
10
15
  print(';');
11
16
  print.newline();
12
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/printer",
3
- "version": "17.3.0",
3
+ "version": "17.4.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Simplest possible opinionated Babel AST printer for 🐊Putout",