putout 42.7.3 → 42.7.4

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,11 @@
1
+ 2026.06.21, v42.7.4
2
+
3
+ feature:
4
+ - 9e9180230 @putout/operator-jsx: add TS support
5
+ - 32d55e833 @putout/operator-json: add TS types
6
+ - bdec737f4 @putout/traverse: add TS types
7
+ - 9fa8b35ab @putout/plugin-variables: convert-const-to-let: exclude VariableDeclaration with VariableDeclarator without init inside ExportDeclaration
8
+
1
9
  2026.06.19, v42.7.3
2
10
 
3
11
  feature:
package/README.md CHANGED
@@ -306,7 +306,6 @@ const source = `
306
306
  putout(source, {
307
307
  plugins: ['remove-unused-variables'],
308
308
  });
309
-
310
309
  // returns
311
310
  `
312
311
  const t = 'hello';
@@ -328,7 +327,6 @@ const source = `
328
327
  await putoutAsync(source, {
329
328
  plugins: ['remove-unused-variables'],
330
329
  });
331
-
332
330
  // returns
333
331
  `
334
332
  const t = 'hello';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.7.3",
3
+ "version": "42.7.4",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
package/types/operator.ts CHANGED
@@ -1,3 +1,6 @@
1
1
  export * from '@putout/operate';
2
2
  export * from '@putout/compare';
3
+ export * from '@putout/traverse';
4
+ export * from '@putout/operator-json';
5
+ export * from '@putout/operator-jsx';
3
6