putout 42.3.0 → 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 +23 -0
  2. package/package.json +4 -2
  3. package/putout.json +6 -0
package/ChangeLog CHANGED
@@ -1,3 +1,26 @@
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
+
15
+ 2026.03.31, v42.3.1
16
+
17
+ feature:
18
+ - 1a76c4a9c putout: @putout/plugin-montag v5.0.0
19
+ - 55f1644ba @putout/plugin-montag: remove-useless-space: add
20
+ - 28f04df11 @putout/plugin-montag: add-newline-before-text: exclude space
21
+ - 7a9bc50b0 @putout/plugin-montag: drop support of 🐊 < 42
22
+ - 407aff6e0 @putout/plugin-montag: add-newline-before-text: add
23
+
1
24
  2026.03.30, v42.3.0
2
25
 
3
26
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "42.3.0",
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",
@@ -130,7 +131,7 @@
130
131
  "@putout/plugin-math": "^5.0.0",
131
132
  "@putout/plugin-maybe": "^5.0.0",
132
133
  "@putout/plugin-merge-duplicate-functions": "^4.0.0",
133
- "@putout/plugin-montag": "^4.0.0",
134
+ "@putout/plugin-montag": "^5.0.0",
134
135
  "@putout/plugin-new": "^5.0.0",
135
136
  "@putout/plugin-nodejs": "^21.0.0",
136
137
  "@putout/plugin-npmignore": "^7.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",