putout 42.2.1 → 42.2.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,36 @@
1
+ 2026.03.17, v42.2.3
2
+
3
+ feature:
4
+ - 187fa8204 putout: @putout/plugin-remove-useless-escape v10.0.0
5
+ - dbf30c71f @putout/plugin-remove-useless-escape: drop support of 🐊 < 42
6
+ - 2e3304635 @putout/plugin-remove-useless-escape: couple TemplateElements inside TemplateLiteral
7
+ - ea86a62fe @putout/processor-toml: oxfmt v0.41.0
8
+ - 931591a7c @putout/plugin-printer: remove-useless-path-from-type-checker
9
+ - bca98afe4 @putout/plugin-printer: reverse-comparison-in-type-checker: add
10
+ - f8ec6bafc @putout/plugin-printer: remove-useless-tuples-from-type-checker: comparison
11
+ - 5fea18929 @putout/plugin-printer: remove-useless-not-from-type-checker
12
+ - 7596bc89d @putout/plugin-printer: merge-tuples-of-type-checkers: +/-
13
+ - dadf3d6e9 @putout/plugin-printer: merge-tuples-of-type-checkers: booleans: +/-
14
+ - 9e74a3e83 @putout/plugin-printer: check-type-passed-to-type-checker: exclude: +/-
15
+
16
+ 2026.03.14, v42.2.2
17
+
18
+ fix:
19
+ - 6458ec678 @putout/plugin-arguments: remove-useless-from-method
20
+ - ce386db06 @putout/plugin-printer: remove-useless-colon-from-type-checker: withSpaces -> withoutColon
21
+ - e7a5a8080 @putout/plugin-printer: merge-tuples-of-type-checkers: ->
22
+ - d734dade4 @putout/plugin-printer: merge-tuples-of-type-checkers: not starts with is
23
+ - a83076f04 @putout/plugin-printer: add-missing-colon-to-type-checkers: single result
24
+
25
+ feature:
26
+ - a217219f1 putout: @putout/plugin-arguments v2.0.0
27
+ - f7ff8ff57 @putout/plugin-arguments: drop support of 🐊 < 42
28
+ - c2706b64c @putout/plugin-printer: remove-useless-colon-from-type-checker
29
+ - 4aa266416 @putout/plugin-printer: merge-tuples-of-type-checkers: is: exclude
30
+ - b8ac1d57c @putout/eslint-config: no-dupe-args: off: use arguments/remove-duplicate instead
31
+ - 1f667b759 @putout/engine-parser: hermes-parser v0.34.0
32
+ - fd9092e02 @putout/plugin-esm: remove-imports-with-duplicate-source: add
33
+
1
34
  2026.03.13, v42.2.1
2
35
 
3
36
  feature:
@@ -58,6 +58,7 @@ export const runWriter = async (overrides = {}) => {
58
58
  } = overrides;
59
59
 
60
60
  const resolvedName = resolve(name).replace(/^\./, cwd);
61
+
61
62
  const [configError, options] = tryCatch(getOptions, {
62
63
  name: resolvedName,
63
64
  rulesdir,
@@ -144,6 +145,7 @@ async function runCache({fileCache, report, write, formatterOptions, currentForm
144
145
  return false;
145
146
 
146
147
  const places = fileCache.getPlaces(name);
148
+
147
149
  const formatterProxy = createFormatterProxy({
148
150
  formatterOptions,
149
151
  name: chooseName(name, resolvedName),
@@ -119,6 +119,7 @@ function _readOptions(name, overrides = {}) {
119
119
  } = overrides;
120
120
 
121
121
  const [dir, options] = recursiveRead(name, '.putout.json');
122
+
122
123
  const [packagePath, packageJson] = readPackageJson(name, {
123
124
  escalade,
124
125
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.2.1",
3
+ "version": "42.2.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",
@@ -100,7 +100,7 @@
100
100
  "@putout/plugin-apply-shorthand-properties": "^7.0.0",
101
101
  "@putout/plugin-apply-starts-with": "^2.0.0",
102
102
  "@putout/plugin-apply-template-literals": "^5.0.0",
103
- "@putout/plugin-arguments": "^1.0.0",
103
+ "@putout/plugin-arguments": "^2.0.0",
104
104
  "@putout/plugin-assignment": "^2.0.0",
105
105
  "@putout/plugin-browserlist": "^2.0.0",
106
106
  "@putout/plugin-conditions": "^9.0.0",
@@ -158,7 +158,7 @@
158
158
  "@putout/plugin-remove-useless-constructor": "^3.0.0",
159
159
  "@putout/plugin-remove-useless-continue": "^3.0.0",
160
160
  "@putout/plugin-remove-useless-delete": "^3.0.0",
161
- "@putout/plugin-remove-useless-escape": "^9.0.0",
161
+ "@putout/plugin-remove-useless-escape": "^10.0.0",
162
162
  "@putout/plugin-remove-useless-functions": "^5.0.0",
163
163
  "@putout/plugin-remove-useless-map": "^3.0.0",
164
164
  "@putout/plugin-remove-useless-object-from-entries": "^1.0.0",