putout 41.10.1 → 41.11.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 CHANGED
@@ -1,3 +1,64 @@
1
+ 2026.01.23, v41.11.0
2
+
3
+ fix:
4
+ - 09cb6d6b2 @putout/plugin-nodejs: apply-privately-required-file: cache
5
+ - b6a04a1e1 @putout/plugin-esm: apply-js-imported-file: invalid
6
+ - 6a05f2444 @putout/esm: apply-namespace-import-to-file: invalid
7
+
8
+ feature:
9
+ - f3e9397a1 putout: private imports: #parse-options: add
10
+ - 351e64b7c @putout/processor-filesystem: create: maybeSimple
11
+ - 575e722a4 @putout/process-filesystem: create: add export
12
+ - be8b1ab6f @putout/plugin-putout: add-push-arg: add
13
+ - 1f51829df @putout/operator-filesystem: renameFile: check that name is passed
14
+ - f61d60e80 @putout/plugin-package-json: apply-js-extension: add
15
+ - 2486f62ba putout: @putout/plugin-spread v2.0.0
16
+ - 9fe91ea43 @putout/plugin-spread: drop support of 🐊 < 41
17
+ - 04ce7844b @putout/plugin-spread: remove-useless-object: property
18
+ - ee88ce28e @putout/plugin-printer: apply-create-test-url: order
19
+ - d0402331d @putout/plugin-printer: apply-create-test-url: add
20
+ - 8be77114f @putout/plugin-nodejs: apply-privately-required-file: simplify
21
+ - 14e88cab5 @putout/plugin-esm: apply-privately-imported-file: private-imports: simplify
22
+ - 01b46d3a0 @putout/operator-match-files: printer options
23
+ - f495dcba4 @putout/plugin-esm: apply-namespace-import-to-file: private imports
24
+ - be4f5bf1c @putout/plugin-regexp: apply-starts-with: regexp: or: exclude
25
+ - dd223f589 root: eslint-plugin-putout v30.0.0
26
+ - 95d7d894a eslint-plugin-putout: rm no-unresolved: use RedLint instead (https://github.com/coderaiser/putout/tree/master/packages/plugin-esm#resolve-imported-file)
27
+ - 6452039cd @putout/plugin-esm: resolve-imported-file: slash: improve support
28
+ - 2ae35fffd @putout/plugin-esm: resolve-imported-file: get-imports: dynamic: identifier
29
+ - 327304e6e @putout/plugin-esm: shorten-imported-file: dynamic import: add support
30
+ - 69deffd6c @putout/esm: shorten-imported-file: invalid
31
+ - ab5302899 putout: @putout/plugin-math v5.0.0
32
+ - d259b4343 @putout/plugin-math: drop support of 🐊 < 41
33
+ - 0f6a0007b @putout/plugin-math: remove-unchanged-zero-declarations: destructuring
34
+ - 4a365cb59 @putout/plugin-nodejs: apply-privately-required-file: add
35
+ - 99b34d13c putout: @putout/eslint-flat v4.0.0
36
+
37
+ 2026.01.21, v41.10.2
38
+
39
+ fix:
40
+ - 2e2220aa7 @putout/plugin-nodejs: apply-privately-required-file: cache
41
+ - 3f8725dc8 @putout/plugin-esm: apply-js-imported-file: invalid
42
+ - 3665309f8 @putout/esm: apply-namespace-import-to-file: invalid
43
+
44
+ feature:
45
+ - 4aefd9834 putout: @putout/plugin-spread v2.0.0
46
+ - fd7e7fd92 @putout/plugin-spread: drop support of 🐊 < 41
47
+ - eca307f4e @putout/plugin-spread: remove-useless-object: property
48
+ - 127cdd0da @putout/plugin-printer: apply-create-test-url: order
49
+ - bb8558072 @putout/plugin-printer: apply-create-test-url: add
50
+ - bfd328fb8 @putout/plugin-nodejs: apply-privately-required-file: simplify
51
+ - ed089eef7 @putout/plugin-esm: apply-privately-imported-file: private-imports: simplify
52
+ - c6ee271d0 @putout/operator-match-files: printer options
53
+ - f93b32c8d @putout/plugin-esm: apply-namespace-import-to-file: private imports
54
+ - 17f9666eb @putout/plugin-regexp: apply-starts-with: regexp: or: exclude
55
+ - 0e50e30cc root: eslint-plugin-putout v30.0.0
56
+ - c77159dea eslint-plugin-putout: rm no-unresolved: use RedLint instead (https://github.com/coderaiser/putout/tree/master/packages/plugin-esm#resolve-imported-file)
57
+ - 32ef583d9 @putout/plugin-esm: resolve-imported-file: slash: improve support
58
+ - edccb1fa8 @putout/plugin-esm: resolve-imported-file: get-imports: dynamic: identifier
59
+ - 996ed01fa @putout/plugin-esm: shorten-imported-file: dynamic import: add support
60
+ - c594bdf29 @putout/esm: shorten-imported-file: invalid
61
+
1
62
  2026.01.19, v41.10.1
2
63
 
3
64
  feature:
@@ -1,8 +1,8 @@
1
1
  import process from 'node:process';
2
2
  import {join, dirname} from 'node:path';
3
3
  import {createRequire} from 'node:module';
4
+ import {parseOptions as _parseOptions} from '#parse-options';
4
5
  import buildPlugins from './build-plugins.js';
5
- import {parseOptions as _parseOptions} from '../parse-options/index.js';
6
6
 
7
7
  const require = createRequire(import.meta.url);
8
8
  const {assign} = Object;
@@ -1,8 +1,8 @@
1
1
  import process from 'node:process';
2
2
  import {Buffer} from 'node:buffer';
3
+ import {parseOptions} from '#parse-options';
3
4
  import {putoutAsync} from '../putout.js';
4
5
  import {ignores} from '../ignores.js';
5
- import {parseOptions} from '../parse-options/index.js';
6
6
 
7
7
  const cwd = process.cwd();
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.10.1",
3
+ "version": "41.11.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",
@@ -29,6 +29,9 @@
29
29
  "./ignores": "./lib/ignores.js",
30
30
  "./simple-import": "./lib/cli/simple-import.js"
31
31
  },
32
+ "imports": {
33
+ "#parse-options": "./lib/parse-options/index.js"
34
+ },
32
35
  "bin": {
33
36
  "putout": "bin/tracer.js"
34
37
  },
@@ -167,7 +170,7 @@
167
170
  "@putout/plugin-remove-useless-template-expressions": "^3.0.0",
168
171
  "@putout/plugin-return": "^3.0.0",
169
172
  "@putout/plugin-simplify-ternary": "^9.0.0",
170
- "@putout/plugin-spread": "^1.0.0",
173
+ "@putout/plugin-spread": "^2.0.0",
171
174
  "@putout/plugin-tape": "^20.0.0",
172
175
  "@putout/plugin-try-catch": "^7.0.0",
173
176
  "@putout/plugin-types": "^9.0.0",
@@ -220,7 +223,7 @@
220
223
  "currify": "^4.0.0",
221
224
  "eslint": "^10.0.0-alpha.0",
222
225
  "eslint-plugin-n": "^17.0.0",
223
- "eslint-plugin-putout": "^29.0.0",
226
+ "eslint-plugin-putout": "^30.0.0",
224
227
  "just-camel-case": "^6.2.0",
225
228
  "madrun": "^12.0.0",
226
229
  "montag": "^1.2.1",