putout 41.9.1 → 41.10.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,25 @@
1
+ 2026.01.19, v41.10.0
2
+
3
+ feature:
4
+ - 3fc2ee084 @putout/plugin-nodejs: apply-privately-required-file: add
5
+ - 6ebbaa680 putout: @putout/eslint-flat v4.0.0
6
+ - 72304cff5 @putout/eslint-flat: migrate to ESM
7
+
8
+ 2026.01.19, v41.9.2
9
+
10
+ feature:
11
+ - 56f87e24b @putout/operator-find-file-up: add
12
+ - 072593a33 @putout/plugin-putout: declare: operator: findFileUp
13
+ - 2678d7e37 @putout/test: filesystem: add
14
+ - eb85a16c2 @putout/plugin-esm: apply-privately-imported-file: no default
15
+ - c96a929f7 @putout/plugin-package-json: remove-imports-nesting
16
+ - c7092ff34 @putout/plugin-putout: convert-replace-to-traverse: commonjs
17
+ - 8f3449c6d @putout/plugin-putout: convert-replace-to-traverse: add
18
+ - d0ec0897c @putout/plugin-esm: apply-privately-imported-file: same directory
19
+ - 457e5bf34 @putout/plugin-esm: apply-privately-imported-file: #find-package
20
+ - 42def4035 @putout/plugin-esm: #change-imports
21
+ - 0b45e2a06 @putout/plugin-esm: #get-imports
22
+
1
23
  2026.01.17, v41.9.1
2
24
 
3
25
  fix:
package/lib/operator.js CHANGED
@@ -12,4 +12,5 @@ export * from '@putout/operator-match-files';
12
12
  export * from '@putout/operator-rename-files';
13
13
  export * from '@putout/operator-ignore';
14
14
  export * from '@putout/operator-parens';
15
+ export * from '@putout/operator-find-file-up';
15
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "41.9.1",
3
+ "version": "41.10.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",
@@ -81,6 +81,7 @@
81
81
  "@putout/operator-add-args": "^14.0.0",
82
82
  "@putout/operator-declare": "^16.0.0",
83
83
  "@putout/operator-filesystem": "^10.0.0",
84
+ "@putout/operator-find-file-up": "^1.0.0",
84
85
  "@putout/operator-ignore": "^5.0.0",
85
86
  "@putout/operator-json": "^3.0.0",
86
87
  "@putout/operator-jsx": "^3.0.0",
@@ -212,8 +213,9 @@
212
213
  "unused"
213
214
  ],
214
215
  "devDependencies": {
215
- "@putout/eslint-flat": "^3.0.0",
216
+ "@putout/eslint-flat": "^4.0.0",
216
217
  "@putout/plugin-apply-entries": "^2.0.0",
218
+ "@putout/test": "^15.1.0",
217
219
  "c8": "^10.0.0",
218
220
  "currify": "^4.0.0",
219
221
  "eslint": "^10.0.0-alpha.0",
package/putout.json CHANGED
@@ -39,6 +39,7 @@
39
39
  "nodejs/mjs-file": "on",
40
40
  "nodejs/rename-file-cjs-to-js": "on",
41
41
  "nodejs/rename-file-mjs-to-js": "on",
42
+ "nodejs/apply-privately-required-file": "on",
42
43
  "package-json/find-file": "on",
43
44
  "package-json/remove-exports-with-missing-files": "on",
44
45
  "typescript/find-file": "on",