putout 42.7.7 → 42.7.8

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,9 @@
1
+ 2026.06.23, v42.7.8
2
+
3
+ feature:
4
+ - 6743844d1 putout: types: operator
5
+ - 19cbce9fc @putout/operator-add-args: types
6
+
1
7
  2026.06.23, v42.7.7
2
8
 
3
9
  feature:
package/lib/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import {PrinterOptions, ParseOptions} from '@putout/engine-parser';
3
3
  import {PutoutPlugin} from '@putout/types/plugin';
4
4
 
5
5
  export type * from '@putout/types/plugin';
6
- export * as operator from '@putout/types/operator';
6
+ export * as operator from '../types/operator.ts';
7
7
 
8
8
  export * from '@putout/engine-parser';
9
9
  export type {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.7.7",
3
+ "version": "42.7.8",
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",
@@ -0,0 +1,8 @@
1
+ export * from '@putout/operate';
2
+ export * from '@putout/compare';
3
+ export * from '@putout/traverse';
4
+ export * from '@putout/operator-json';
5
+ export * from '@putout/operator-jsx';
6
+ export * from '@putout/operator-ignore';
7
+ export * from '@putout/operator-add-args';
8
+