putout 42.7.7 → 42.7.9
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 +13 -0
- package/lib/index.d.ts +1 -1
- package/package.json +2 -2
- package/types/operator.ts +9 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
2026.06.24, v42.7.9
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 619113533 putout: @putout/operator-declare v17.0.0
|
|
5
|
+
- 8b3a404ba @putout/operator-declare: drop support of 🐊 < 42
|
|
6
|
+
- f00887556 @putout/operator-declare: types
|
|
7
|
+
|
|
8
|
+
2026.06.23, v42.7.8
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- 6743844d1 putout: types: operator
|
|
12
|
+
- 19cbce9fc @putout/operator-add-args: types
|
|
13
|
+
|
|
1
14
|
2026.06.23, v42.7.7
|
|
2
15
|
|
|
3
16
|
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 '
|
|
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.
|
|
3
|
+
"version": "42.7.9",
|
|
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",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@putout/formatter-time": "^5.0.0",
|
|
77
77
|
"@putout/operate": "^15.0.0",
|
|
78
78
|
"@putout/operator-add-args": "^15.0.0",
|
|
79
|
-
"@putout/operator-declare": "^
|
|
79
|
+
"@putout/operator-declare": "^17.0.0",
|
|
80
80
|
"@putout/operator-filesystem": "^11.0.0",
|
|
81
81
|
"@putout/operator-find-file-up": "^2.0.0",
|
|
82
82
|
"@putout/operator-ignore": "^6.0.0",
|
|
@@ -0,0 +1,9 @@
|
|
|
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-declare';
|
|
7
|
+
export * from '@putout/operator-ignore';
|
|
8
|
+
export * from '@putout/operator-add-args';
|
|
9
|
+
|