putout 28.10.0 → 28.12.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 CHANGED
@@ -1,3 +1,22 @@
1
+ 2023.02.01, v28.12.0
2
+
3
+ feature:
4
+ - package: @putout/plugin-remove-useless-continue v2.0.0
5
+ - @putout/plugin-remove-useless-continue: drop support of 🐊 < 28
6
+ - @putout/plugin-remove-useless-continue: drop support of node < 16
7
+ - @putout/plugin-remove-useless-contiue: remove only ContinueStatement
8
+
9
+ 2023.01.30, v28.11.0
10
+
11
+ feature:
12
+ - package: @putout/plugin-apply-flat-map v2.0.0
13
+ - @putout/plugin-apply-template-literals: add
14
+ - @putout/plugin-putout: check-replace-code: add support of __identifier__a
15
+ - @putout/compare: comparators: add support of TemplateElements
16
+ - @putout/compare: improve compare of template literals
17
+ - @putout/plugin-apply-flat-map: drop support of 🐊 < 28
18
+ - @putout/compare: improve support of template literals
19
+
1
20
  2023.01.29, v28.10.0
2
21
 
3
22
  feature:
package/README.md CHANGED
@@ -147,6 +147,7 @@ module.exports.replace = () => ({
147
147
  - ✅ apply `await import`;
148
148
  - ✅ apply comparison order;
149
149
  - ✅ apply `flatMap()`;
150
+ - ✅ apply `template literals`;
150
151
 
151
152
  ## Install
152
153
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "28.10.0",
3
+ "version": "28.12.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",
@@ -75,10 +75,11 @@
75
75
  "@putout/plugin-apply-comparison-order": "^1.0.0",
76
76
  "@putout/plugin-apply-destructuring": "^5.0.0",
77
77
  "@putout/plugin-apply-early-return": "^2.0.0",
78
- "@putout/plugin-apply-flat-map": "^1.0.0",
78
+ "@putout/plugin-apply-flat-map": "^2.0.0",
79
79
  "@putout/plugin-apply-if-condition": "^1.0.0",
80
80
  "@putout/plugin-apply-is-array": "^3.0.0",
81
81
  "@putout/plugin-apply-optional-chaining": "^2.0.0",
82
+ "@putout/plugin-apply-template-literals": "^1.0.0",
82
83
  "@putout/plugin-browserlist": "^1.0.0",
83
84
  "@putout/plugin-convert-apply-to-spread": "^3.0.0",
84
85
  "@putout/plugin-convert-arguments-to-rest": "^1.0.0",
@@ -148,7 +149,7 @@
148
149
  "@putout/plugin-remove-useless-assign": "^1.0.0",
149
150
  "@putout/plugin-remove-useless-conditions": "^3.0.0",
150
151
  "@putout/plugin-remove-useless-constructor": "^1.0.0",
151
- "@putout/plugin-remove-useless-continue": "^1.0.0",
152
+ "@putout/plugin-remove-useless-continue": "^2.0.0",
152
153
  "@putout/plugin-remove-useless-else": "^1.0.0",
153
154
  "@putout/plugin-remove-useless-escape": "^3.0.0",
154
155
  "@putout/plugin-remove-useless-for-of": "^2.0.0",
package/putout.json CHANGED
@@ -145,6 +145,7 @@
145
145
  "apply-optional-chaining",
146
146
  "apply-if-condition",
147
147
  "apply-comparison-order",
148
+ "apply-template-literals",
148
149
  "extract-object-properties",
149
150
  "extract-sequence-expressions",
150
151
  "madrun",