putout 37.17.0 → 37.19.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 +28 -0
- package/lib/putout.js +1 -0
- package/package.json +4 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
2025.01.23, v37.19.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- d9359471b @putout/plugin-extract-keywords-from-variables: isDeclarationKeyword
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- 94e35fbba @putout/plugin-putout: declare: operator-keyword
|
|
8
|
+
- 1be222802 @putout/operator-keyword: isDeclarationKeyword, isConditionKeyword
|
|
9
|
+
- f37981315 putout: @putout/plugin-remove-unused-variables v10.1.0
|
|
10
|
+
- f27b24496 @putout/plugin-remove-unused-variables: drop support of 🐊 < 37
|
|
11
|
+
- 40ad7ae99 putout: add operator-keyword
|
|
12
|
+
- 6cf22f70d @putout/plugin-remove-unused-variables: exclude keywords
|
|
13
|
+
- 8e3dce03e @putout/operator-keyword: add
|
|
14
|
+
- 03024f0ea @putout/plugin-extract-keywords-from-variables: isKeyword
|
|
15
|
+
- e6d85801d @putout/plugin: declare: isKeyword
|
|
16
|
+
- da325b7f1 @putout/engine-loader: load: PUTOUT_LOAD_DIR
|
|
17
|
+
- dfdf418eb @putout/plugin-conditions: reverse-conditions: !(__a !== __b || __c !== __d) -> __a === __b && __c === __d
|
|
18
|
+
- b178889e1 @putout/plugin-putout: declare-path-variable: add
|
|
19
|
+
- 4989b9f90 @putout/plugin-putout: declare-template-variables: declared partially
|
|
20
|
+
- ee80b0024 @putout/engine-parser: acorn: ParenthesizedExpression + TS
|
|
21
|
+
|
|
22
|
+
2025.01.21, v37.18.0
|
|
23
|
+
|
|
24
|
+
feature:
|
|
25
|
+
- e66562c50 putout: @putout/plugin-eslint v10.0.0
|
|
26
|
+
- 615e09b60 @putout/plugin-eslint: drop support of 🐊 < 37
|
|
27
|
+
- 12400df77 @putout/plugin-eslint: convert-files-to-array: check config type
|
|
28
|
+
|
|
1
29
|
2025.01.20, v37.17.0
|
|
2
30
|
|
|
3
31
|
feature:
|
package/lib/putout.js
CHANGED
|
@@ -137,6 +137,7 @@ module.exports.operator = {
|
|
|
137
137
|
...require('@putout/operator-regexp'),
|
|
138
138
|
...require('@putout/operator-add-args'),
|
|
139
139
|
...require('@putout/operator-filesystem'),
|
|
140
|
+
...require('@putout/operator-keyword'),
|
|
140
141
|
...require('@putout/operator-match-files'),
|
|
141
142
|
...require('@putout/operator-rename-files'),
|
|
142
143
|
...require('@putout/operator-ignore'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "37.
|
|
3
|
+
"version": "37.19.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",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"@putout/operator-filesystem": "^5.0.0",
|
|
81
81
|
"@putout/operator-ignore": "^1.0.0",
|
|
82
82
|
"@putout/operator-json": "^2.0.0",
|
|
83
|
+
"@putout/operator-keyword": "^1.0.0",
|
|
83
84
|
"@putout/operator-match-files": "^5.0.0",
|
|
84
85
|
"@putout/operator-regexp": "^1.0.0",
|
|
85
86
|
"@putout/operator-rename-files": "^2.0.0",
|
|
@@ -113,7 +114,7 @@
|
|
|
113
114
|
"@putout/plugin-coverage": "^1.0.0",
|
|
114
115
|
"@putout/plugin-declare": "^4.0.0",
|
|
115
116
|
"@putout/plugin-declare-before-reference": "^5.0.0",
|
|
116
|
-
"@putout/plugin-eslint": "^
|
|
117
|
+
"@putout/plugin-eslint": "^10.0.0",
|
|
117
118
|
"@putout/plugin-esm": "^1.0.0",
|
|
118
119
|
"@putout/plugin-extract-keywords-from-variables": "^1.0.0",
|
|
119
120
|
"@putout/plugin-extract-object-properties": "^9.0.0",
|
|
@@ -156,7 +157,7 @@
|
|
|
156
157
|
"@putout/plugin-remove-unused-for-of-variables": "^3.0.0",
|
|
157
158
|
"@putout/plugin-remove-unused-labels": "^1.0.1",
|
|
158
159
|
"@putout/plugin-remove-unused-private-fields": "^2.0.0",
|
|
159
|
-
"@putout/plugin-remove-unused-variables": "^10.
|
|
160
|
+
"@putout/plugin-remove-unused-variables": "^10.1.0",
|
|
160
161
|
"@putout/plugin-remove-useless-arguments": "^10.0.0",
|
|
161
162
|
"@putout/plugin-remove-useless-array": "^1.0.0",
|
|
162
163
|
"@putout/plugin-remove-useless-array-constructor": "^2.0.0",
|