putout 42.3.1 → 42.4.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 +22 -0
  2. package/package.json +4 -2
  3. package/putout.json +6 -0
package/ChangeLog CHANGED
@@ -1,3 +1,25 @@
1
+ 2026.03.31, v42.4.1
2
+
3
+ feature:
4
+ - 16f5cd6fa putout: @putout/plugin-remove-debugger v9.0.0
5
+ - a6b14ca2b @putout/plugin-remove-debugger: drop support of 🐊 < 42
6
+ - 81ab2e1f7 @putout/plugin-remove-debugger: devDependnecies: rm unused
7
+ - 940ddde07 @putout/processor-toml: oxfmt v0.43.0
8
+
9
+ 2026.03.31, v42.4.0
10
+
11
+ fix:
12
+ - 0aebf9d50 @putout/operator-json: __docker: __object -> __array
13
+ - 394324c87 @putout/plugin-montag: add-newline-before-text: report
14
+
15
+ feature:
16
+ - 7ac456051 putout: add support of Dockerfile
17
+ - cdbdfce05 @putout/plugin-docker: add
18
+ - 4eff63f8c @putout/plugin-putout: declare: __docker, __toml
19
+ - 9fdf4fa43 @putout/processor-docker: add
20
+ - 868b6f1c8 @putout/operator-json: isDocker: add
21
+ - 8e8ec0be1 @putout/plugin-montag: add-newline-before-text: multiline
22
+
1
23
  2026.03.31, v42.3.1
2
24
 
3
25
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.3.1",
3
+ "version": "42.4.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",
@@ -116,6 +116,7 @@
116
116
  "@putout/plugin-declare": "^8.0.0",
117
117
  "@putout/plugin-declare-before-reference": "^10.0.0",
118
118
  "@putout/plugin-destructuring": "^2.0.0",
119
+ "@putout/plugin-docker": "^1.0.0",
119
120
  "@putout/plugin-eslint": "^15.0.0",
120
121
  "@putout/plugin-esm": "^10.0.0",
121
122
  "@putout/plugin-extract-sequence-expressions": "^4.0.0",
@@ -142,7 +143,7 @@
142
143
  "@putout/plugin-putout-config": "^12.0.0",
143
144
  "@putout/plugin-regexp": "^14.0.0",
144
145
  "@putout/plugin-remove-console": "^7.0.0",
145
- "@putout/plugin-remove-debugger": "^8.0.0",
146
+ "@putout/plugin-remove-debugger": "^9.0.0",
146
147
  "@putout/plugin-remove-duplicate-case": "^4.0.0",
147
148
  "@putout/plugin-remove-duplicate-elements": "^1.0.0",
148
149
  "@putout/plugin-remove-duplicate-keys": "^9.0.0",
@@ -177,6 +178,7 @@
177
178
  "@putout/plugin-variables": "^2.0.0",
178
179
  "@putout/plugin-webpack": "^4.0.0",
179
180
  "@putout/processor-css": "^12.0.0",
181
+ "@putout/processor-docker": "^1.0.0",
180
182
  "@putout/processor-filesystem": "^8.0.0",
181
183
  "@putout/processor-ignore": "^7.0.0",
182
184
  "@putout/processor-javascript": "^5.0.0",
package/putout.json CHANGED
@@ -12,6 +12,7 @@
12
12
  "yaml",
13
13
  "toml",
14
14
  "css",
15
+ "docker",
15
16
  "filesystem"
16
17
  ],
17
18
  "match": {
@@ -163,6 +164,9 @@
163
164
  },
164
165
  "*.d.ts": {
165
166
  "declare": "off"
167
+ },
168
+ "Dockerfile*": {
169
+ "docker": "on"
166
170
  }
167
171
  },
168
172
  "ignore": [
@@ -200,6 +204,7 @@
200
204
  "nodejs/remove-useless-strict-mode": "off",
201
205
  "browserlist": "off",
202
206
  "filesystem": "off",
207
+ "docker": "off",
203
208
  "remove-duplicate-elements": "off"
204
209
  },
205
210
  "plugins": [
@@ -216,6 +221,7 @@
216
221
  "arguments",
217
222
  "assignment",
218
223
  "destructuring",
224
+ "docker",
219
225
  "extract-sequence-expressions",
220
226
  "madrun",
221
227
  "maybe",