@putout/printer 5.22.1 → 5.23.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
+ 2023.10.17, v5.23.0
2
+
3
+ feature:
4
+ - fb1ae6c @putout/printer: TSImportEqualsDeclaration: isExport support
5
+
1
6
  2023.10.11, v5.22.1
2
7
 
3
8
  feature:
@@ -206,6 +206,7 @@ module.exports = {
206
206
  TSEnumDeclaration,
207
207
  TSEnumMember,
208
208
  TSImportEqualsDeclaration(path, {print, maybe}) {
209
+ maybe.print(path.node.isExport, 'export ');
209
210
  print('import ');
210
211
  print('__id');
211
212
  print.space();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/printer",
3
- "version": "5.22.1",
3
+ "version": "5.23.0",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Simplest possible opinionated Babel AST printer for 🐊Putout",