putout 42.2.0 → 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 +27 -0
- package/lib/cli/runner/writer.js +2 -0
- package/lib/parse-options/index.js +1 -0
- package/package.json +3 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
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
|
+
|
|
19
|
+
2026.03.13, v42.2.1
|
|
20
|
+
|
|
21
|
+
feature:
|
|
22
|
+
- e34eb22bc putout: @putout/plugin-github v19.0.0
|
|
23
|
+
- 9d2060c08 @putout/plugin-github: drop support of 🐊 < 42
|
|
24
|
+
- 98502d496 @putout/plugin-github: update-actions: actions/cache@5 (https://github.com/actions/cache/releases/v5.0.0)
|
|
25
|
+
- bcaf4ccaf @putout/plugin-printer: add-missing-colon-to-type-checker: add
|
|
26
|
+
- a63103e37 @putout/test: whenTestsEnds
|
|
27
|
+
|
|
1
28
|
2026.03.13, v42.2.0
|
|
2
29
|
|
|
3
30
|
feature:
|
package/lib/cli/runner/writer.js
CHANGED
|
@@ -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),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "42.2.
|
|
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": "^
|
|
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",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"@putout/plugin-filesystem": "^13.0.0",
|
|
123
123
|
"@putout/plugin-for-of": "^12.0.0",
|
|
124
124
|
"@putout/plugin-generators": "^2.0.0",
|
|
125
|
-
"@putout/plugin-github": "^
|
|
125
|
+
"@putout/plugin-github": "^19.0.0",
|
|
126
126
|
"@putout/plugin-gitignore": "^7.0.0",
|
|
127
127
|
"@putout/plugin-labels": "^3.0.0",
|
|
128
128
|
"@putout/plugin-logical-expressions": "^8.0.0",
|