putout 35.8.1 → 35.9.1
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 +12 -0
- package/package.json +1 -1
- package/putout.json +9 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
2024.04.07, v35.9.1
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 7bb17b143 putout: config: *.mts, *.cts: add support
|
|
5
|
+
|
|
6
|
+
2024.04.07, v35.9.0
|
|
7
|
+
|
|
8
|
+
feature:
|
|
9
|
+
- 5b9814c1f putout: filesystem: typescript: cts-file + mts-file
|
|
10
|
+
- 5759cd4d6 @putout/plugin-typescript: mts-file: add
|
|
11
|
+
- 900c655bf @putout/plugin-typescript: cts-file: add
|
|
12
|
+
|
|
1
13
|
2024.04.06, v35.8.1
|
|
2
14
|
|
|
3
15
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.9.1",
|
|
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",
|
package/putout.json
CHANGED
|
@@ -38,7 +38,9 @@
|
|
|
38
38
|
"nodejs/rename-file-cjs-to-js": "on",
|
|
39
39
|
"nodejs/rename-file-mjs-to-js": "on",
|
|
40
40
|
"package-json/find-file": "on",
|
|
41
|
-
"typescript/find-file": "on"
|
|
41
|
+
"typescript/find-file": "on",
|
|
42
|
+
"typescript/cjs-file": "on",
|
|
43
|
+
"typescript/mjs-file": "on"
|
|
42
44
|
},
|
|
43
45
|
"*.md": {
|
|
44
46
|
"conditions/apply-consistent-blocks": "off",
|
|
@@ -113,6 +115,12 @@
|
|
|
113
115
|
"nodejs/convert-commonjs-to-esm": "on",
|
|
114
116
|
"tape/convert-mock-require-to-mock-import": "on"
|
|
115
117
|
},
|
|
118
|
+
"*.mts": {
|
|
119
|
+
"typescript/convert-commonjs-to-esm": "on"
|
|
120
|
+
},
|
|
121
|
+
"*.cts": {
|
|
122
|
+
"typescript/convert-esm-to-commonjs": "on"
|
|
123
|
+
},
|
|
116
124
|
"*.cjs": {
|
|
117
125
|
"nodejs/convert-esm-to-commonjs": "on"
|
|
118
126
|
},
|