putout 22.6.0 → 22.6.1
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 +11 -0
- package/lib/putout.js +0 -2
- package/package.json +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
2021.12.08, v22.6.1
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- (putout) transform: runPlugins: rm useless parser
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- (@putout/plugin-declare-undefined-variables) wrap: add returns
|
|
8
|
+
- (eslint-plugin-putout) putout: add ability to remove parent, it makes recast go crazy (https://github.com/eslint/eslint/blob/v8.4.0/lib/linter/linter.js#L964)
|
|
9
|
+
- (eslint-plugin-putout) putout: use generate, when recast cannot print
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
2021.12.07, v22.6.0
|
|
2
13
|
|
|
3
14
|
feature:
|
package/lib/putout.js
CHANGED
|
@@ -84,7 +84,6 @@ function transform(ast, source, opts) {
|
|
|
84
84
|
rules,
|
|
85
85
|
fix,
|
|
86
86
|
fixCount,
|
|
87
|
-
parser,
|
|
88
87
|
loadPlugins,
|
|
89
88
|
runPlugins,
|
|
90
89
|
} = opts;
|
|
@@ -102,7 +101,6 @@ function transform(ast, source, opts) {
|
|
|
102
101
|
fix,
|
|
103
102
|
fixCount,
|
|
104
103
|
plugins,
|
|
105
|
-
parser,
|
|
106
104
|
});
|
|
107
105
|
|
|
108
106
|
return places;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "22.6.
|
|
3
|
+
"version": "22.6.1",
|
|
4
4
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
5
5
|
"description": "🐊 Pluggable and configurable code transformer with built-in eslint, babel plugins and jscodeshift codemods support of js, jsx typescript, flow files, markdown, yaml and json",
|
|
6
6
|
"homepage": "http://github.com/coderaiser/putout",
|