putout 42.7.14 → 42.7.16

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,24 @@
1
+ 2026.06.27, v42.7.16
2
+
3
+ fix:
4
+ - be1ec212f @putout/plugin-madrun: convert-prepublish-only-to-wisdom: test -> coverage
5
+
6
+ feature:
7
+ - e61ff1052 @operator-ignore: options: list
8
+ - f8ae94ac4 @putout/operator-regexp: types
9
+ - 6d38e968c @putout/plugin-madrun: insert-test-dts: add
10
+ - 0d7662e3b @putout/plugin-printer: add-missing-arrow-to-type-checker: before type
11
+
12
+ 2026.06.26, v42.7.15
13
+
14
+ fix:
15
+ - fb82ab12e @putout/plugin-parens: remove-useless-from-await: report: Remove -> Avoid
16
+
17
+ feature:
18
+ - fcc06ac3b putout: @putout/operator-find-file-up v3.0.0
19
+ - 878d11824 @putout/operator-find-file-up: drop support of 🐊 < 42
20
+ - 947606091 @putout/operator-find-file-up: types
21
+
1
22
  2026.06.26, v42.7.14
2
23
 
3
24
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.7.14",
3
+ "version": "42.7.16",
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",
@@ -78,7 +78,7 @@
78
78
  "@putout/operator-add-args": "^15.0.0",
79
79
  "@putout/operator-declare": "^17.0.0",
80
80
  "@putout/operator-filesystem": "^11.0.0",
81
- "@putout/operator-find-file-up": "^2.0.0",
81
+ "@putout/operator-find-file-up": "^3.0.0",
82
82
  "@putout/operator-ignore": "^6.0.0",
83
83
  "@putout/operator-json": "^3.0.0",
84
84
  "@putout/operator-jsx": "^3.0.0",
package/types/operator.ts CHANGED
@@ -9,4 +9,6 @@ export * from '@putout/operator-ignore';
9
9
  export * from '@putout/operator-add-args';
10
10
  export * from '@putout/operator-filesystem';
11
11
  export * from '@putout/operator-match-files';
12
+ export * from '@putout/operator-regexp';
13
+ export * from '@putout/operator-find-file-up';
12
14