putout 41.5.2 → 41.5.3

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.01.04, v41.5.3
2
+
3
+ fix:
4
+ - 9548f79ee putout: keep previous behaviour when putout has all the info
5
+
1
6
  2026.01.04, v41.5.2
2
7
 
3
8
  fix:
package/lib/exports.js ADDED
@@ -0,0 +1,12 @@
1
+ export {putoutAsync} from './putout.js';
2
+ export {types, traverse} from '@putout/babel';
3
+ export {
4
+ template,
5
+ generate,
6
+ print,
7
+ parse,
8
+ } from '@putout/engine-parser';
9
+ export {transformAsync, transform} from './transform.js';
10
+ export * as operator from './operator.js';
11
+ export {findPlacesAsync, findPlaces} from './find-places.js';
12
+ export {codeframe} from './codeframe.js';
package/lib/index.js CHANGED
@@ -1,20 +1,13 @@
1
1
  import {putout} from './putout.js';
2
+ import * as exports from './exports.js';
2
3
 
3
- export {putoutAsync} from './putout.js';
4
- export {types, traverse} from '@putout/babel';
5
- export {
6
- template,
7
- generate,
8
- print,
9
- parse,
10
- } from '@putout/engine-parser';
11
- export {transformAsync, transform} from './transform.js';
12
- export * as operator from './operator.js';
13
- export {findPlacesAsync, findPlaces} from './find-places.js';
14
- export {codeframe} from './codeframe.js';
4
+ Object.assign(putout, exports);
15
5
 
16
6
  export default putout;
17
7
 
18
8
  export {
19
9
  putout,
20
10
  };
11
+
12
+ export * from './exports.js';
13
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.5.2",
3
+ "version": "41.5.3",
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",