putout 33.2.0 → 33.3.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.
Files changed (3) hide show
  1. package/ChangeLog +10 -0
  2. package/package.json +2 -3
  3. package/putout.json +3 -4
package/ChangeLog CHANGED
@@ -1,3 +1,13 @@
1
+ 2023.11.13, v33.3.0
2
+
3
+ feature:
4
+ - 2e5080fd2 putout: @putout/plugin-conditions v4.0.0
5
+ - 5e4c149d8 @putout/plugin-conditions: drop support of 🐊 < 33
6
+ - afda2e338 @putout/plugin-conditions: merge apply-consistent-blocks
7
+ - 78b127500 @putout/plugin-apply-consistent-blocks: exclude if inside else
8
+ - e286615e3 @putout/plugin-apply-consistent-blocks: add one more levels of nesting
9
+ - b36ba4b97 @putout/plugin-apply-consistent-blocks: add
10
+
1
11
  2023.11.13, v33.2.0
2
12
 
3
13
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "33.2.0",
3
+ "version": "33.3.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",
@@ -74,7 +74,6 @@
74
74
  "@putout/operator-filesystem": "^1.0.1",
75
75
  "@putout/operator-regexp": "^1.0.0",
76
76
  "@putout/plugin-apply-at": "^2.0.0",
77
- "@putout/plugin-apply-consistent-blocks": "^1.0.0",
78
77
  "@putout/plugin-apply-destructuring": "^7.0.0",
79
78
  "@putout/plugin-apply-dot-notation": "^1.0.0",
80
79
  "@putout/plugin-apply-early-return": "^3.0.0",
@@ -83,7 +82,7 @@
83
82
  "@putout/plugin-apply-starts-with": "^1.0.0",
84
83
  "@putout/plugin-apply-template-literals": "^2.0.0",
85
84
  "@putout/plugin-browserlist": "^1.0.0",
86
- "@putout/plugin-conditions": "^3.0.0",
85
+ "@putout/plugin-conditions": "^4.0.0",
87
86
  "@putout/plugin-convert-apply-to-spread": "^4.0.0",
88
87
  "@putout/plugin-convert-arguments-to-rest": "^2.0.0",
89
88
  "@putout/plugin-convert-array-copy-to-slice": "^3.0.0",
package/putout.json CHANGED
@@ -31,10 +31,11 @@
31
31
  "remove-empty/import": "off"
32
32
  },
33
33
  "*.md": {
34
- "apply-consistent-blocks": "off",
34
+ "conditions/apply-consistent-blocks": "off",
35
+ "conditions/convert-comparison-to-boolean": "off",
36
+ "conditions/remove-constant": "off",
35
37
  "maybe": "off",
36
38
  "convert-quotes-to-backticks": "off",
37
- "conditions/convert-comparison-to-boolean": "off",
38
39
  "remove-unused-expressions": "off",
39
40
  "remove-unused-variables": "off",
40
41
  "remove-useless-escape": "off",
@@ -42,7 +43,6 @@
42
43
  "remove-useless-return": "off",
43
44
  "remove-empty": "off",
44
45
  "for-of/remove-unused-variables": "off",
45
- "conditions/remove-constant": "off",
46
46
  "remove-console": "off",
47
47
  "remove-unreachable-code": "off",
48
48
  "declare": "off",
@@ -151,7 +151,6 @@
151
151
  "tape/convert-mock-require-to-mock-import": "off"
152
152
  },
153
153
  "plugins": [
154
- "apply-consistent-blocks",
155
154
  "apply-at",
156
155
  "apply-dot-notation",
157
156
  "apply-early-return",