putout 33.2.0 → 33.4.0
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 +25 -0
- package/package.json +3 -4
- package/putout.json +3 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
2023.11.14, v33.4.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- e73bed76f @putout/plugin-nodejs: add-node-preget back native module
|
|
5
|
+
- aad6a94dc @putout/plugin-nodejs: add-node-preadd is-builtin-module to get esm.sh working
|
|
6
|
+
- d97ebfc58 @putout/plugin-nodejs: add-node-preprefix
|
|
7
|
+
- f3a4f5e5b @putout/plugin-conditions: repository url
|
|
8
|
+
|
|
9
|
+
feature:
|
|
10
|
+
- 6cfce4c4c putout: @putout/plugin-remove-useless-return v6.0.0
|
|
11
|
+
- 59c459244 @putout/plugin-remove-useless-return: drop support of 🐊 < 33
|
|
12
|
+
- 984982c23 @putout/plugin-remove-useless-return: exclude complex params
|
|
13
|
+
- 09f3abf4f @putout/cli-filesystem: readFileContent, writeFileContent
|
|
14
|
+
- 17a34ada8 @putout/operator-filesystem: readFileContent, writeFileContent
|
|
15
|
+
|
|
16
|
+
2023.11.13, v33.3.0
|
|
17
|
+
|
|
18
|
+
feature:
|
|
19
|
+
- 2e5080fd2 putout: @putout/plugin-conditions v4.0.0
|
|
20
|
+
- 5e4c149d8 @putout/plugin-conditions: drop support of 🐊 < 33
|
|
21
|
+
- afda2e338 @putout/plugin-conditions: merge apply-consistent-blocks
|
|
22
|
+
- 78b127500 @putout/plugin-apply-consistent-blocks: exclude if inside else
|
|
23
|
+
- e286615e3 @putout/plugin-apply-consistent-blocks: add one more levels of nesting
|
|
24
|
+
- b36ba4b97 @putout/plugin-apply-consistent-blocks: add
|
|
25
|
+
|
|
1
26
|
2023.11.13, v33.2.0
|
|
2
27
|
|
|
3
28
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "33.
|
|
3
|
+
"version": "33.4.0",
|
|
4
4
|
"type": "commonjs",
|
|
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",
|
|
@@ -74,7 +74,6 @@
|
|
|
74
74
|
"@putout/operator-filesystem": "^1.0.1",
|
|
75
75
|
"@putout/operator-regexp": "^1.0.0",
|
|
76
76
|
"@putout/plugin-apply-at": "^2.0.0",
|
|
77
|
-
"@putout/plugin-apply-consistent-blocks": "^1.0.0",
|
|
78
77
|
"@putout/plugin-apply-destructuring": "^7.0.0",
|
|
79
78
|
"@putout/plugin-apply-dot-notation": "^1.0.0",
|
|
80
79
|
"@putout/plugin-apply-early-return": "^3.0.0",
|
|
@@ -83,7 +82,7 @@
|
|
|
83
82
|
"@putout/plugin-apply-starts-with": "^1.0.0",
|
|
84
83
|
"@putout/plugin-apply-template-literals": "^2.0.0",
|
|
85
84
|
"@putout/plugin-browserlist": "^1.0.0",
|
|
86
|
-
"@putout/plugin-conditions": "^
|
|
85
|
+
"@putout/plugin-conditions": "^4.0.0",
|
|
87
86
|
"@putout/plugin-convert-apply-to-spread": "^4.0.0",
|
|
88
87
|
"@putout/plugin-convert-arguments-to-rest": "^2.0.0",
|
|
89
88
|
"@putout/plugin-convert-array-copy-to-slice": "^3.0.0",
|
|
@@ -149,7 +148,7 @@
|
|
|
149
148
|
"@putout/plugin-remove-useless-map": "^1.0.0",
|
|
150
149
|
"@putout/plugin-remove-useless-operand": "^2.0.0",
|
|
151
150
|
"@putout/plugin-remove-useless-replace": "^1.0.1",
|
|
152
|
-
"@putout/plugin-remove-useless-return": "^
|
|
151
|
+
"@putout/plugin-remove-useless-return": "^6.0.0",
|
|
153
152
|
"@putout/plugin-remove-useless-spread": "^9.0.0",
|
|
154
153
|
"@putout/plugin-remove-useless-template-expressions": "^2.0.0",
|
|
155
154
|
"@putout/plugin-remove-useless-variables": "^10.0.0",
|
package/putout.json
CHANGED
|
@@ -31,10 +31,11 @@
|
|
|
31
31
|
"remove-empty/import": "off"
|
|
32
32
|
},
|
|
33
33
|
"*.md": {
|
|
34
|
-
"apply-consistent-blocks": "off",
|
|
34
|
+
"conditions/apply-consistent-blocks": "off",
|
|
35
|
+
"conditions/convert-comparison-to-boolean": "off",
|
|
36
|
+
"conditions/remove-constant": "off",
|
|
35
37
|
"maybe": "off",
|
|
36
38
|
"convert-quotes-to-backticks": "off",
|
|
37
|
-
"conditions/convert-comparison-to-boolean": "off",
|
|
38
39
|
"remove-unused-expressions": "off",
|
|
39
40
|
"remove-unused-variables": "off",
|
|
40
41
|
"remove-useless-escape": "off",
|
|
@@ -42,7 +43,6 @@
|
|
|
42
43
|
"remove-useless-return": "off",
|
|
43
44
|
"remove-empty": "off",
|
|
44
45
|
"for-of/remove-unused-variables": "off",
|
|
45
|
-
"conditions/remove-constant": "off",
|
|
46
46
|
"remove-console": "off",
|
|
47
47
|
"remove-unreachable-code": "off",
|
|
48
48
|
"declare": "off",
|
|
@@ -151,7 +151,6 @@
|
|
|
151
151
|
"tape/convert-mock-require-to-mock-import": "off"
|
|
152
152
|
},
|
|
153
153
|
"plugins": [
|
|
154
|
-
"apply-consistent-blocks",
|
|
155
154
|
"apply-at",
|
|
156
155
|
"apply-dot-notation",
|
|
157
156
|
"apply-early-return",
|