putout 36.4.2 → 36.5.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 +10 -0
- package/package.json +2 -2
- package/putout.json +4 -2
package/ChangeLog
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2024.09.10, v36.5.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- e260e49df @putout/plugin-putout-config: remove-empty-file: add
|
|
5
|
+
- b90c88e45 putout: @putout/plugin-putout v21.0.0
|
|
6
|
+
- 74fa773ed @putout/plugin-putout: drop support of 🐊 < 36
|
|
7
|
+
- cc27c27f8 @putout/plugin-putout: convert-traverse-to-include: check all methods
|
|
8
|
+
- 58eea7073 @putout/engine-runner: improve plugins validation (#218)
|
|
9
|
+
- c2ab8cb25 @putout/eslint: handle case when file is ignored
|
|
10
|
+
|
|
1
11
|
2024.09.02, v36.4.2
|
|
2
12
|
|
|
3
13
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "36.
|
|
3
|
+
"version": "36.5.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",
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"@putout/plugin-npmignore": "^5.0.0",
|
|
139
139
|
"@putout/plugin-package-json": "^7.0.0",
|
|
140
140
|
"@putout/plugin-promises": "^15.0.0",
|
|
141
|
-
"@putout/plugin-putout": "^
|
|
141
|
+
"@putout/plugin-putout": "^21.0.0",
|
|
142
142
|
"@putout/plugin-putout-config": "^6.0.0",
|
|
143
143
|
"@putout/plugin-regexp": "^9.0.0",
|
|
144
144
|
"@putout/plugin-remove-console": "^6.0.0",
|
package/putout.json
CHANGED
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"typescript/cts-file": "on",
|
|
43
43
|
"typescript/mts-file": "on",
|
|
44
44
|
"typescript/rename-file-cts-to-ts": "on",
|
|
45
|
-
"typescript/rename-file-mts-to-ts": "on"
|
|
45
|
+
"typescript/rename-file-mts-to-ts": "on",
|
|
46
|
+
"putout-config/remove-empty-file": "on"
|
|
46
47
|
},
|
|
47
48
|
"*.md": {
|
|
48
49
|
"convert-assignment-to-declaration": "off",
|
|
@@ -63,7 +64,8 @@
|
|
|
63
64
|
"remove-unreachable-code": "off",
|
|
64
65
|
"declare": "off",
|
|
65
66
|
"nodejs/declare": "off",
|
|
66
|
-
"typescript/remove-unused-types": "off"
|
|
67
|
+
"typescript/remove-unused-types": "off",
|
|
68
|
+
"remove-nested-blocks": "off"
|
|
67
69
|
},
|
|
68
70
|
"*.svelte": {
|
|
69
71
|
"remove-unused-variables": "off"
|