putout 42.3.1 → 42.4.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 +14 -0
  2. package/package.json +3 -1
  3. package/putout.json +6 -0
package/ChangeLog CHANGED
@@ -1,3 +1,17 @@
1
+ 2026.03.31, v42.4.0
2
+
3
+ fix:
4
+ - 0aebf9d50 @putout/operator-json: __docker: __object -> __array
5
+ - 394324c87 @putout/plugin-montag: add-newline-before-text: report
6
+
7
+ feature:
8
+ - 7ac456051 putout: add support of Dockerfile
9
+ - cdbdfce05 @putout/plugin-docker: add
10
+ - 4eff63f8c @putout/plugin-putout: declare: __docker, __toml
11
+ - 9fdf4fa43 @putout/processor-docker: add
12
+ - 868b6f1c8 @putout/operator-json: isDocker: add
13
+ - 8e8ec0be1 @putout/plugin-montag: add-newline-before-text: multiline
14
+
1
15
  2026.03.31, v42.3.1
2
16
 
3
17
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.3.1",
3
+ "version": "42.4.0",
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",
@@ -101,6 +101,7 @@
101
101
  "@putout/plugin-apply-starts-with": "^2.0.0",
102
102
  "@putout/plugin-apply-template-literals": "^5.0.0",
103
103
  "@putout/plugin-arguments": "^2.0.0",
104
+ "@putout/plugin-docker": "^1.0.0",
104
105
  "@putout/plugin-assignment": "^2.0.0",
105
106
  "@putout/plugin-browserlist": "^2.0.0",
106
107
  "@putout/plugin-conditions": "^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",