putout 41.3.2 → 41.3.4

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.
package/ChangeLog CHANGED
@@ -1,3 +1,41 @@
1
+ 2026.01.01, v41.3.4
2
+
3
+ fix:
4
+ - 946a34d89 @putout/plugin-nodejs: convert-commonjs-to-esm-require: top level blocks
5
+ - d95d66a7c putout: default-options: import engine-runner
6
+ - bf5a7ad51 @putout/cli-process-file: mjs -> js
7
+
8
+ feature:
9
+ - 23b586eaf putout: fixCount: 4
10
+ - 61a32abf2 @putut/plugin-nodejs: strict-mode: expression -> directive
11
+ - 2003d66c7 @putout/plugin-nodejs: convert-commonjs-to-esm: require: exclude not top level
12
+ - 4329ab1c8 @putout/plugin-putout: check-replace-code: report: quotes
13
+ - 551ec2a0e @putout/cli-process-file: samadhi v4.0.2
14
+ - 2c3e5773e root: madrun v12.0.0
15
+ - 18119c6a2 @putout/plugin-putout: apply-engine-node-version
16
+ - 984e86fd8 putout: @putout/test v15.0.0
17
+ - a65af8cfc @putout/test: drop support of node < 22
18
+ - 6472d0063 @putout/test: @putout/cli-process-file v6.0.0
19
+
20
+ 2025.12.31, v41.3.3
21
+
22
+ fix:
23
+ - e97d7ef24 putout: package: node v22.12 (https://nodejs.org/ko/blog/release/v22.12.0)
24
+ - 0b84e6492 @putout/eslint: node version
25
+ - f681bc069 eslint-plugin-putout: node version
26
+ - c2cbf3a0a @putout/engine-reporter: node version
27
+ - 4b2faa5ed @putout/engine-processor: node version
28
+ - 849f3d19e @putout/engine-runner: node version
29
+ - 8d093148f @putout/engine-parser: node-version
30
+ - 8f6e0448d @putout/engine-loader: node version
31
+
32
+ feature:
33
+ - 7c9ebfb0e putout: @putout/cli-process-file v6.0.0
34
+ - 143ac443a @putout/cli-process-file: migrate to ESM
35
+ - e16428684 @putout/cli-process-file: drop support of node < 22
36
+ - a98e710de @putout/cli-process-file: samadhi v3.0.6
37
+ - 13d8735c6 root: redlint v5.0.0
38
+
1
39
  2025.12.31, v41.3.2
2
40
 
3
41
  fix:
@@ -1,4 +1,4 @@
1
- import _initProcessFile from '@putout/cli-process-file';
1
+ import {initProcessFile as _initProcessFile} from '@putout/cli-process-file';
2
2
  import {runWriter} from './writer.js';
3
3
 
4
4
  export const run = async (overrides) => {
@@ -1,5 +1,5 @@
1
1
  import * as loader from '@putout/engine-loader';
2
- import runner from '@putout/engine-runner';
2
+ import * as runner from '@putout/engine-runner';
3
3
  import {createProgress} from '@putout/engine-runner/progress';
4
4
 
5
5
  export const defaultOptions = (opts = {}) => {
@@ -7,7 +7,7 @@ export const defaultOptions = (opts = {}) => {
7
7
  parser = 'babel',
8
8
  printer = opts.printer || 'putout',
9
9
  fix = true,
10
- fixCount = 3,
10
+ fixCount = 4,
11
11
  loadPlugins = loader.loadPlugins,
12
12
  loadPluginsAsync = loader.loadPluginsAsync,
13
13
  runPlugins = runner.runPlugins,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.3.2",
3
+ "version": "41.3.4",
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",
@@ -57,7 +57,7 @@
57
57
  "@putout/cli-choose-formatter": "^5.0.0",
58
58
  "@putout/cli-keypress": "^3.0.0",
59
59
  "@putout/cli-match": "^3.0.0",
60
- "@putout/cli-process-file": "^5.0.0",
60
+ "@putout/cli-process-file": "^6.0.0",
61
61
  "@putout/cli-ruler": "^4.0.0",
62
62
  "@putout/cli-staged": "^2.0.0",
63
63
  "@putout/cli-validate-args": "^2.0.0",
@@ -218,14 +218,14 @@
218
218
  "eslint-plugin-n": "^17.0.0",
219
219
  "eslint-plugin-putout": "^29.0.0",
220
220
  "just-camel-case": "^6.2.0",
221
- "madrun": "^11.0.0",
221
+ "madrun": "^12.0.0",
222
222
  "montag": "^1.2.1",
223
223
  "nodemon": "^3.0.1",
224
224
  "supertape": "^11.0.3"
225
225
  },
226
226
  "license": "MIT",
227
227
  "engines": {
228
- "node": ">=22"
228
+ "node": ">=22.12"
229
229
  },
230
230
  "publishConfig": {
231
231
  "access": "public"