putout 41.10.2 → 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,39 @@
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
+
1
37
  2026.01.21, v41.10.2
2
38
 
3
39
  fix:
@@ -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.2",
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
  },