putout 41.5.0 → 41.5.1

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,21 @@
1
+ 2026.01.04, v41.5.1
2
+
3
+ feature:
4
+ - 84dfaf5fc putout: @putout/operator-parens v4.0.0
5
+ - a912ca593 @putout/operator-parens: migrate to ESM
6
+ - a2f4ba9bd @putout/plugin-nodejs: convert-commonjs-to-esm: exports: value as function
7
+ - e7904d5d9 @putout/plugin-nodejs: convert-commonjs-to-esm: ObjectMethod: improve support
8
+ - f4b0c953d @putout/engine-parser: @putout/printer v17.0.0
9
+ - a9f532346 @putout/plugin-printer: drop support of 🐊 < 41
10
+ - de6a1c375 @putout/plugin-printer: remove-legacy-test-declaration: esm
11
+ - 5769d9b98 @putout/plugin-nodejs: convert-commonjs-to-esm: exports: ObjectMethod: exclude
12
+ - 439a36dee @putout/plugin-nodejs: convert-commonjs-to-esm: exports: exclude spread
13
+ - 394460485 eslint-plugin-putout: globals v17.0.0
14
+ - e0fec513f @putout/eslint-config: globals v17.0.0
15
+ - 3590e41cf @putout/processor-svelte: drop support of 🐊 < 41
16
+ - 1631b0450 eslint-plugin-putout: migrate putout to ESM
17
+ - 665cd60ea putout: migrate to ESM
18
+
1
19
  2026.01.03, v41.5.0
2
20
 
3
21
  feature:
package/lib/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const {types} = require('@putout/babel');
3
+ const {types, traverse} = require('@putout/babel');
4
4
  const {
5
5
  template,
6
6
  generate,
@@ -9,6 +9,7 @@ const {
9
9
  } = require('@putout/engine-parser');
10
10
 
11
11
  const {putout, putoutAsync} = require('./putout.js');
12
+
12
13
  const {
13
14
  findPlacesAsync,
14
15
  findPlaces,
@@ -33,3 +34,4 @@ module.exports.transformAsync = transformAsync;
33
34
  module.exports.types = types;
34
35
  module.exports.findPlaces = findPlaces;
35
36
  module.exports.findPlacesAsync = findPlacesAsync;
37
+ module.exports.traverse = traverse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.5.0",
3
+ "version": "41.5.1",
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",
@@ -86,7 +86,7 @@
86
86
  "@putout/operator-jsx": "^2.0.0",
87
87
  "@putout/operator-keyword": "^4.0.0",
88
88
  "@putout/operator-match-files": "^10.0.0",
89
- "@putout/operator-parens": "^3.0.0",
89
+ "@putout/operator-parens": "^4.0.0",
90
90
  "@putout/operator-regexp": "^4.0.0",
91
91
  "@putout/operator-rename-files": "^6.0.0",
92
92
  "@putout/plugin-apply-arrow": "^3.0.0",