putout 42.2.1 → 42.2.2

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,21 @@
1
+ 2026.03.14, v42.2.2
2
+
3
+ fix:
4
+ - 6458ec678 @putout/plugin-arguments: remove-useless-from-method
5
+ - ce386db06 @putout/plugin-printer: remove-useless-colon-from-type-checker: withSpaces -> withoutColon
6
+ - e7a5a8080 @putout/plugin-printer: merge-tuples-of-type-checkers: ->
7
+ - d734dade4 @putout/plugin-printer: merge-tuples-of-type-checkers: not starts with is
8
+ - a83076f04 @putout/plugin-printer: add-missing-colon-to-type-checkers: single result
9
+
10
+ feature:
11
+ - a217219f1 putout: @putout/plugin-arguments v2.0.0
12
+ - f7ff8ff57 @putout/plugin-arguments: drop support of 🐊 < 42
13
+ - c2706b64c @putout/plugin-printer: remove-useless-colon-from-type-checker
14
+ - 4aa266416 @putout/plugin-printer: merge-tuples-of-type-checkers: is: exclude
15
+ - b8ac1d57c @putout/eslint-config: no-dupe-args: off: use arguments/remove-duplicate instead
16
+ - 1f667b759 @putout/engine-parser: hermes-parser v0.34.0
17
+ - fd9092e02 @putout/plugin-esm: remove-imports-with-duplicate-source: add
18
+
1
19
  2026.03.13, v42.2.1
2
20
 
3
21
  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.2",
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",