putout 41.3.3 → 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 +19 -0
- package/lib/default-options.js +2 -2
- package/package.json +2 -2
package/ChangeLog
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
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
|
+
|
|
1
20
|
2025.12.31, v41.3.3
|
|
2
21
|
|
|
3
22
|
fix:
|
package/lib/default-options.js
CHANGED
|
@@ -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 =
|
|
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.
|
|
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",
|
|
@@ -218,7 +218,7 @@
|
|
|
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": "^
|
|
221
|
+
"madrun": "^12.0.0",
|
|
222
222
|
"montag": "^1.2.1",
|
|
223
223
|
"nodemon": "^3.0.1",
|
|
224
224
|
"supertape": "^11.0.3"
|