putout 35.9.1 → 35.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,20 @@
1
+ 2024.04.07, v35.10.0
2
+
3
+ feature:
4
+ - d144bdf3b putout: @putout/plugin-putout v19.0.0
5
+ - 632c648ac putout: @putout/operator-rename-files: add
6
+ - 11cf7700e @putout/plugin-putout: drop support of 🐊 < 35
7
+ - 77a895c9f @putout/plugin-putout: declare: renameFiles: add
8
+ - cec3a34f3 @putout/operator-rename-files: add
9
+
10
+ 2024.04.07, v35.9.2
11
+
12
+ fix:
13
+ - 7793e40ea putout: config: typescript: cjs, mjs -> cts, mts
14
+
15
+ feature:
16
+ - a0219dc13 @putout/plugin-nodejs: move out renameFiles
17
+
1
18
  2024.04.07, v35.9.1
2
19
 
3
20
  feature:
package/lib/putout.js CHANGED
@@ -135,6 +135,7 @@ module.exports.operator = {
135
135
  ...require('@putout/operator-add-args'),
136
136
  ...require('@putout/operator-filesystem'),
137
137
  ...require('@putout/operator-match-files'),
138
+ ...require('@putout/operator-rename-files'),
138
139
  };
139
140
 
140
141
  module.exports.ignores = require('./ignores');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.9.1",
3
+ "version": "35.10.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",
@@ -82,6 +82,7 @@
82
82
  "@putout/operator-json": "^2.0.0",
83
83
  "@putout/operator-match-files": "^3.0.0",
84
84
  "@putout/operator-regexp": "^1.0.0",
85
+ "@putout/operator-rename-files": "^1.0.0",
85
86
  "@putout/plugin-apply-at": "^2.0.0",
86
87
  "@putout/plugin-apply-destructuring": "^7.0.0",
87
88
  "@putout/plugin-apply-dot-notation": "^2.0.0",
@@ -130,7 +131,7 @@
130
131
  "@putout/plugin-npmignore": "^4.0.0",
131
132
  "@putout/plugin-package-json": "^7.0.0",
132
133
  "@putout/plugin-promises": "^14.0.0",
133
- "@putout/plugin-putout": "^18.0.0",
134
+ "@putout/plugin-putout": "^19.0.0",
134
135
  "@putout/plugin-putout-config": "^5.0.0",
135
136
  "@putout/plugin-regexp": "^8.0.0",
136
137
  "@putout/plugin-remove-console": "^6.0.0",
package/putout.json CHANGED
@@ -39,8 +39,8 @@
39
39
  "nodejs/rename-file-mjs-to-js": "on",
40
40
  "package-json/find-file": "on",
41
41
  "typescript/find-file": "on",
42
- "typescript/cjs-file": "on",
43
- "typescript/mjs-file": "on"
42
+ "typescript/cts-file": "on",
43
+ "typescript/mts-file": "on"
44
44
  },
45
45
  "*.md": {
46
46
  "conditions/apply-consistent-blocks": "off",