putout 36.8.0 → 36.9.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 +13 -0
- package/package.json +2 -1
- package/putout.json +3 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
2024.10.02, v36.9.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- d24950965 @putout/plugin-package-json: remove-exports-with-missing-files: indent: 4 -> 2
|
|
5
|
+
- 037f06789 @putout/plugin-nodejs: remove-illigal-strict-mode -> remove-illegal-strict-mode
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- 9340f32a9 @putout/plugin-remove-useless-push: add
|
|
9
|
+
- 8883e2e8f @putout/plugin-package-json: remove-exports-with-missing-files: add
|
|
10
|
+
- ca4ecd296 @putout/plugin-putout: add-path-arg-to-fix: exclude empty body
|
|
11
|
+
- 587da10e6 @putout/plugin-putout: add-track-file: one arg
|
|
12
|
+
- cf3f4c49a @putout/plugin-convert-arguments-to-rest: exclude "strict mode"
|
|
13
|
+
|
|
1
14
|
2024.09.27, v36.8.0
|
|
2
15
|
|
|
3
16
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "36.
|
|
3
|
+
"version": "36.9.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",
|
|
@@ -167,6 +167,7 @@
|
|
|
167
167
|
"@putout/plugin-remove-useless-functions": "^3.0.0",
|
|
168
168
|
"@putout/plugin-remove-useless-map": "^1.0.0",
|
|
169
169
|
"@putout/plugin-remove-useless-operand": "^2.0.0",
|
|
170
|
+
"@putout/plugin-remove-useless-push": "^1.0.0",
|
|
170
171
|
"@putout/plugin-remove-useless-replace": "^1.0.1",
|
|
171
172
|
"@putout/plugin-remove-useless-return": "^7.0.0",
|
|
172
173
|
"@putout/plugin-remove-useless-spread": "^11.0.0",
|
package/putout.json
CHANGED
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"nodejs/rename-file-cjs-to-js": "on",
|
|
39
39
|
"nodejs/rename-file-mjs-to-js": "on",
|
|
40
40
|
"package-json/find-file": "on",
|
|
41
|
+
"package-json/remove-exports-with-missing-files": "on",
|
|
41
42
|
"typescript/find-file": "on",
|
|
42
43
|
"typescript/cts-file": "on",
|
|
43
44
|
"typescript/mts-file": "on",
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
"labels/remove-unused": "off",
|
|
58
59
|
"remove-useless-escape": "off",
|
|
59
60
|
"remove-useless-variables": "off",
|
|
61
|
+
"remove-useless-push": "off",
|
|
60
62
|
"remove-useless-return": "off",
|
|
61
63
|
"remove-empty": "off",
|
|
62
64
|
"for-of/remove-unused-variables": "off",
|
|
@@ -215,6 +217,7 @@
|
|
|
215
217
|
"remove-useless-assign",
|
|
216
218
|
"remove-useless-replace",
|
|
217
219
|
"remove-useless-variables",
|
|
220
|
+
"remove-useless-push",
|
|
218
221
|
"remove-useless-map",
|
|
219
222
|
"remove-useless-constructor",
|
|
220
223
|
"remove-useless-array",
|