putout 41.0.10 → 41.1.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.
- package/ChangeLog +41 -0
- package/lib/cli/index.js +4 -2
- package/package.json +5 -5
package/ChangeLog
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
2025.12.29, v41.1.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- d65298b76 @putout/engine-reporter: npmignore: fixture
|
|
5
|
+
- b34d2b0a2 @putout/engine-runner: debug: add colors (sxzz/obug#1)
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- 05d5d72e9 putout: @putout/engine-loader v17.0.0
|
|
9
|
+
- e002589bd putout: @putout/engine-reporter v7.0.1
|
|
10
|
+
- 1f8f92b46 @putout/engine-reporter: @putout/engine-loader v17.0.0
|
|
11
|
+
- 3292c45f5 @putout/engine-runner: @putout/engine-loader v17.0.0
|
|
12
|
+
- b58b46b26 putout: @putout/engine-processor v15.0.0
|
|
13
|
+
- 9f66143d4 @putout/engine-processor: @putout/engine-loader v17.0.0
|
|
14
|
+
- 3a5819c0f putout: @putout/engine-loader v16.3.1
|
|
15
|
+
- 09c3f18e2 @putout/engine-loader: migrate to ESM
|
|
16
|
+
- abf3827e2 @putout/engine-loader: get rid of nano-memoize
|
|
17
|
+
- e2dac8075 @putout/plugin-nodejs: convert-commonjs-to-esm: ObjectExpression
|
|
18
|
+
- 707296d78 @putout/plugin-esm: merge-export-declarations: source
|
|
19
|
+
- 897c01ed4 @putout/plugin-esm: apply-export-from: ImportSpecifier: add support
|
|
20
|
+
- b5a18c474 @putout/plugin-esm: merge-declaration-with-export: empty export: exclude
|
|
21
|
+
- a1bcf1828 @putout/plugin-esm: merge-export-declarations: add
|
|
22
|
+
- 771c3437a @putout/engine-loader: get rid of useless once
|
|
23
|
+
- e198eedb9 @putout/engine-loader: get rid of mock-require
|
|
24
|
+
- 415df3d80 @putout/engine-loader: loader: ERR_REQUIRE_ESM: get rid of handling, since node > 20.19 supports require(esm) (https://nodejs.org/en/blog/release/v20.19.0)'
|
|
25
|
+
|
|
26
|
+
2025.12.27, v41.0.11
|
|
27
|
+
|
|
28
|
+
fix:
|
|
29
|
+
- 20bd39f5e @putout/cli-staged: rm unused once
|
|
30
|
+
|
|
31
|
+
feature:
|
|
32
|
+
- cdcc97e93 eslint-plugin-putout: @putout/eslint v5.0.0
|
|
33
|
+
- 07d8299d8 putout: @putout/cli-process-file v5.0.0
|
|
34
|
+
- 000ee519c @putout/test: @putout/eslint v5.0.0
|
|
35
|
+
- b32a4c2ad @putout/cli-process-file: @putout/eslint v5.0.0
|
|
36
|
+
- 558d2db2a @putout/cli-process-file: drop support of 🐊 < 41
|
|
37
|
+
- 97c712254 @putout/eslint: migrate to ESM
|
|
38
|
+
- 628e3761d @putout/eslint: drop support of node < 20
|
|
39
|
+
- 80b0031e1 @putout/eslint: default export -> eslint
|
|
40
|
+
- 30c14a876 @putout/plugin-declare-before-reference: simplify
|
|
41
|
+
|
|
1
42
|
2025.12.27, v41.0.10
|
|
2
43
|
|
|
3
44
|
feature:
|
package/lib/cli/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const process = require('node:process');
|
|
4
4
|
const tryToCatch = require('try-to-catch');
|
|
5
5
|
|
|
6
|
-
const {isCI} = require('ci-info');
|
|
6
|
+
const {isCI: _isCI} = require('ci-info');
|
|
7
7
|
const {nanomemoize} = require('nano-memoize');
|
|
8
8
|
const tryCatch = require('try-catch');
|
|
9
9
|
const wraptile = require('wraptile');
|
|
@@ -26,7 +26,7 @@ const {argvConfig, parseArgs} = require('./parse-args');
|
|
|
26
26
|
const {getFiles: _getFiles} = require('./get-files.mjs');
|
|
27
27
|
const {version, dependencies} = require('../../package.json');
|
|
28
28
|
const {formatter: defaultFormatter} = require('../../putout.json');
|
|
29
|
-
const {simpleImport} = require('./simple-import');
|
|
29
|
+
const {simpleImport: _simpleImport} = require('./simple-import');
|
|
30
30
|
const {run} = require('./runner/runner.js');
|
|
31
31
|
|
|
32
32
|
const {
|
|
@@ -86,6 +86,8 @@ module.exports = async (overrides = {}) => {
|
|
|
86
86
|
initProcessFile,
|
|
87
87
|
initReport = _initReport,
|
|
88
88
|
getFormatter = _getFormatter,
|
|
89
|
+
isCI = _isCI,
|
|
90
|
+
simpleImport = _simpleImport,
|
|
89
91
|
} = overrides;
|
|
90
92
|
|
|
91
93
|
const isStop = parseIsStop(overrides.isStop || noop, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "41.0
|
|
3
|
+
"version": "41.1.0",
|
|
4
4
|
"type": "commonjs",
|
|
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",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
"@putout/cli-choose-formatter": "^5.0.0",
|
|
57
57
|
"@putout/cli-keypress": "^3.0.0",
|
|
58
58
|
"@putout/cli-match": "^2.0.0",
|
|
59
|
-
"@putout/cli-process-file": "^
|
|
59
|
+
"@putout/cli-process-file": "^5.0.0",
|
|
60
60
|
"@putout/cli-ruler": "^4.0.0",
|
|
61
61
|
"@putout/cli-staged": "^2.0.0",
|
|
62
62
|
"@putout/cli-validate-args": "^2.0.0",
|
|
63
63
|
"@putout/compare": "^19.0.0",
|
|
64
|
-
"@putout/engine-loader": "^
|
|
64
|
+
"@putout/engine-loader": "^17.0.0",
|
|
65
65
|
"@putout/engine-parser": "^15.0.1",
|
|
66
|
-
"@putout/engine-processor": "^
|
|
67
|
-
"@putout/engine-reporter": "^
|
|
66
|
+
"@putout/engine-processor": "^15.0.0",
|
|
67
|
+
"@putout/engine-reporter": "^7.0.1",
|
|
68
68
|
"@putout/engine-runner": "^26.0.0",
|
|
69
69
|
"@putout/formatter-codeframe": "^10.0.0",
|
|
70
70
|
"@putout/formatter-dump": "^6.0.0",
|