putout 42.2.3 → 42.3.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 +25 -0
  2. package/package.json +3 -2
  3. package/putout.json +9 -4
package/ChangeLog CHANGED
@@ -1,3 +1,28 @@
1
+ 2026.03.31, v42.3.1
2
+
3
+ feature:
4
+ - 1a76c4a9c putout: @putout/plugin-montag v5.0.0
5
+ - 55f1644ba @putout/plugin-montag: remove-useless-space: add
6
+ - 28f04df11 @putout/plugin-montag: add-newline-before-text: exclude space
7
+ - 7a9bc50b0 @putout/plugin-montag: drop support of 🐊 < 42
8
+ - 407aff6e0 @putout/plugin-montag: add-newline-before-text: add
9
+
10
+ 2026.03.30, v42.3.0
11
+
12
+ feature:
13
+ - 67b008c27 @putout/plugin-remove-duplicate-elements: add
14
+ - b7447a237 @putout/plugin-types: convert-typeof-to-is-type: CallExpression
15
+ - 6aa1fa4cb @putout/processor-toml: oxfmt v0.42.0
16
+ - d489d75ca eslint-plugin-putout: typescript v6.0.2
17
+ - 7b48990c7 @putout/plugin-github: update-actions: docker/setup-qemu-action: v3 -> v4
18
+ - a39076b02 @putout/plugin-github: update-actions: setup-buildx-action: v3 -> v4
19
+ - 76c6fd095 @putout/plugin-github: update-actions: docker/login-action: v3 -> v4
20
+ - ae8895f41 @putout/plugin-github: docker/build-push-action: v5 -> v7
21
+ - 81f0f0632 @putout/plugin-declare-before-reference: improve support of template literals
22
+ - c71b5a37b @putout/eslint-config: no-extra-parens: ignoreJSX
23
+ - f986ce197 @putout/plugin-printer: check-type-passed-to-type-checker: exclude comparison
24
+ - e98e97dab @putout/plugin-printer: merge-tuples-of-type-checkers: Function: exclude
25
+
1
26
  2026.03.17, v42.2.3
2
27
 
3
28
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.2.3",
3
+ "version": "42.3.1",
4
4
  "type": "module",
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",
@@ -130,7 +130,7 @@
130
130
  "@putout/plugin-math": "^5.0.0",
131
131
  "@putout/plugin-maybe": "^5.0.0",
132
132
  "@putout/plugin-merge-duplicate-functions": "^4.0.0",
133
- "@putout/plugin-montag": "^4.0.0",
133
+ "@putout/plugin-montag": "^5.0.0",
134
134
  "@putout/plugin-new": "^5.0.0",
135
135
  "@putout/plugin-nodejs": "^21.0.0",
136
136
  "@putout/plugin-npmignore": "^7.0.0",
@@ -144,6 +144,7 @@
144
144
  "@putout/plugin-remove-console": "^7.0.0",
145
145
  "@putout/plugin-remove-debugger": "^8.0.0",
146
146
  "@putout/plugin-remove-duplicate-case": "^4.0.0",
147
+ "@putout/plugin-remove-duplicate-elements": "^1.0.0",
147
148
  "@putout/plugin-remove-duplicate-keys": "^9.0.0",
148
149
  "@putout/plugin-remove-empty": "^15.0.0",
149
150
  "@putout/plugin-remove-iife": "^5.0.0",
package/putout.json CHANGED
@@ -111,10 +111,12 @@
111
111
  "npmignore": "on"
112
112
  },
113
113
  ".{nyc,c8}rc.json": {
114
- "coverage": "on"
114
+ "coverage": "on",
115
+ "remove-duplicate-elements": "on"
115
116
  },
116
117
  ".*ignore": {
117
- "convert-quotes-to-backticks": "off"
118
+ "convert-quotes-to-backticks": "off",
119
+ "remove-duplicate-elements": "on"
118
120
  },
119
121
  "webpack.config.js": {
120
122
  "webpack": "on"
@@ -132,7 +134,8 @@
132
134
  "putout/convert-match-to-function": "off"
133
135
  },
134
136
  "package.json": {
135
- "package-json": "on"
137
+ "package-json": "on",
138
+ "remove-duplicate-elements": "on"
136
139
  },
137
140
  "bin": {
138
141
  "nodejs/remove-process-exit": "off",
@@ -196,7 +199,8 @@
196
199
  "nodejs/add-missing-strict-mode": "off",
197
200
  "nodejs/remove-useless-strict-mode": "off",
198
201
  "browserlist": "off",
199
- "filesystem": "off"
202
+ "filesystem": "off",
203
+ "remove-duplicate-elements": "off"
200
204
  },
201
205
  "plugins": [
202
206
  "parens",
@@ -244,6 +248,7 @@
244
248
  "remove-duplicate-case",
245
249
  "remove-nested-blocks",
246
250
  "remove-unreachable-code",
251
+ "remove-duplicate-elements",
247
252
  "remove-duplicate-keys",
248
253
  "return",
249
254
  "spread",