putout 41.5.2 → 41.5.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,16 @@
1
+ 2026.01.04, v41.5.4
2
+
3
+ feature:
4
+ - 2da471e53 @putout/engine-runner: @putout/operator-declare v16.0.0
5
+ - 2fe8e9a77 putout: @putout/operator-declare v16.0.0
6
+ - caa53bf86 @putout/operator-declare: migrate to ESM
7
+ - f959d33aa root: supertape v12.0.0
8
+
9
+ 2026.01.04, v41.5.3
10
+
11
+ fix:
12
+ - 9548f79ee putout: keep previous behaviour when putout has all the info
13
+
1
14
  2026.01.04, v41.5.2
2
15
 
3
16
  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.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",
@@ -79,7 +79,7 @@
79
79
  "@putout/formatter-time": "^4.0.0",
80
80
  "@putout/operate": "^15.0.0",
81
81
  "@putout/operator-add-args": "^13.0.0",
82
- "@putout/operator-declare": "^15.0.0",
82
+ "@putout/operator-declare": "^16.0.0",
83
83
  "@putout/operator-filesystem": "^10.0.0",
84
84
  "@putout/operator-ignore": "^5.0.0",
85
85
  "@putout/operator-json": "^2.0.0",
@@ -221,7 +221,7 @@
221
221
  "madrun": "^12.0.0",
222
222
  "montag": "^1.2.1",
223
223
  "nodemon": "^3.0.1",
224
- "supertape": "^11.0.3"
224
+ "supertape": "^12.0.0"
225
225
  },
226
226
  "license": "MIT",
227
227
  "engines": {