putout 34.7.3 → 34.8.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.
Files changed (3) hide show
  1. package/ChangeLog +24 -0
  2. package/package.json +5 -4
  3. package/putout.json +1 -0
package/ChangeLog CHANGED
@@ -1,3 +1,27 @@
1
+ 2024.01.09, v34.8.1
2
+
3
+ feature:
4
+ - 1404d5292 putout: @putout/plugin-remove-unused-expressions v8.0.0
5
+ - 08200f1f2 @putout/plugin-remove-unused-expressions: drop support of node < 18
6
+ - cfe2ade11 @putout/plugin-remove-unused-expressions: exclude IIFE (#198)
7
+ - 4eea6575a root: eslint-plugin-n v17.0.0-0
8
+ - f2f7fe931 @putout/plugin-for-of: for-each: exclude VariableDeclarator (#196)
9
+
10
+ 2024.01.09, v34.8.0
11
+
12
+ fix:
13
+ - 2f66f5f35 @putout/plugin-minify: merge-loops: add
14
+ - fd73cb65c @putout/plugin-remove-debugger: description
15
+
16
+ feature:
17
+ - e7b749180 @putout/plugin-minify: merge-loops: add
18
+ - 3d618625b @putout/plugin-convert-label-to-object: exclude empty BlockStatements
19
+ - ef61a3b8e putout: @putout/plugin-convert-label-to-object v1.0.0
20
+ - 4a63f5f2e @putout/plugin-convert-label-to-object: exlude functions without LabeledStatement
21
+ - d57c488c2 @putout/plugin-convert-label-to-object: add
22
+ - b68b9dba6 putout: @putout/plugin-remove-debugger v6.0.0
23
+ - 660c8d55d @putout/plugin-remove-debugger: drop support of node < 18
24
+
1
25
  2024.01.08, v34.7.3
2
26
 
3
27
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "34.7.3",
3
+ "version": "34.8.1",
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",
@@ -97,6 +97,7 @@
97
97
  "@putout/plugin-convert-concat-to-flat": "^1.0.0",
98
98
  "@putout/plugin-convert-const-to-let": "^1.0.0",
99
99
  "@putout/plugin-convert-index-of-to-includes": "^2.0.0",
100
+ "@putout/plugin-convert-label-to-object": "^1.0.0",
100
101
  "@putout/plugin-convert-object-assign-to-merge-spread": "^6.0.0",
101
102
  "@putout/plugin-convert-object-entries-to-array-entries": "^3.0.0",
102
103
  "@putout/plugin-convert-optional-to-logical": "^3.0.0",
@@ -131,7 +132,7 @@
131
132
  "@putout/plugin-regexp": "^8.0.0",
132
133
  "@putout/plugin-remove-console": "^6.0.0",
133
134
  "@putout/plugin-remove-constant-conditions": "^4.0.0",
134
- "@putout/plugin-remove-debugger": "^5.0.0",
135
+ "@putout/plugin-remove-debugger": "^6.0.0",
135
136
  "@putout/plugin-remove-duplicate-case": "^3.0.0",
136
137
  "@putout/plugin-remove-duplicate-keys": "^4.0.0",
137
138
  "@putout/plugin-remove-empty": "^11.0.0",
@@ -139,7 +140,7 @@
139
140
  "@putout/plugin-remove-nested-blocks": "^6.0.0",
140
141
  "@putout/plugin-remove-unreachable-code": "^1.0.0",
141
142
  "@putout/plugin-remove-unreferenced-variables": "^3.0.0",
142
- "@putout/plugin-remove-unused-expressions": "^7.0.0",
143
+ "@putout/plugin-remove-unused-expressions": "^8.0.0",
143
144
  "@putout/plugin-remove-unused-for-of-variables": "^3.0.0",
144
145
  "@putout/plugin-remove-unused-private-fields": "^2.0.0",
145
146
  "@putout/plugin-remove-unused-variables": "^8.0.0",
@@ -213,7 +214,7 @@
213
214
  "c8": "^9.0.0",
214
215
  "currify": "^4.0.0",
215
216
  "eslint": "^9.0.0-alpha.0",
216
- "eslint-plugin-n": "^16.0.0",
217
+ "eslint-plugin-n": "^17.0.0-0",
217
218
  "eslint-plugin-putout": "^22.0.0",
218
219
  "just-camel-case": "^4.0.2",
219
220
  "lerna": "^6.0.1",
package/putout.json CHANGED
@@ -224,6 +224,7 @@
224
224
  "convert-assignment-to-comparison",
225
225
  "convert-quotes-to-backticks",
226
226
  "convert-object-entries-to-array-entries",
227
+ "convert-label-to-object",
227
228
  "merge-destructuring-properties",
228
229
  "merge-duplicate-imports",
229
230
  "merge-duplicate-functions",