putout 39.0.12 → 39.0.14
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 +28 -0
- package/package.json +4 -4
- package/putout.json +3 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
2025.03.25, v39.0.14
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 16e21ad1d @putout/plugin-madrun: convert-cut-env-to-run: report
|
|
5
|
+
- 5bf53b94e @putout/plugin-putout-config: comparisson -> comparison
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- fdc7bad66 putout: @putout/plugin-eslint v13.0.0
|
|
9
|
+
- ce8bab41d @putout/plugin-eslint: remove-useless-define-config: add
|
|
10
|
+
- e71ea95e9 @putout/plugin-eslint: convert to ESM
|
|
11
|
+
- f420043c4 putout: @putout/plugin-regexp v11.0.0
|
|
12
|
+
- bb86eb8a8 @putout/plugin-regexp: drop support of 🐊 < 39
|
|
13
|
+
- 7c97b5734 @putout/plugin-putout: apply-namespace-specifier: parent directory
|
|
14
|
+
- ef569b43d @putout/plugin-nodejs: convert-commonjs-to-esm-require: do not add extension
|
|
15
|
+
|
|
16
|
+
2025.03.25, v39.0.13
|
|
17
|
+
|
|
18
|
+
fix:
|
|
19
|
+
- a4a02f14a @putout/plugin-nodejs: declare: json -> esm
|
|
20
|
+
|
|
21
|
+
feature:
|
|
22
|
+
- 165818035 putout: @putout/plugin-putout-config v9.0.0
|
|
23
|
+
- 6df798018 @putout/plugin-putout-config: apply-assignment: add
|
|
24
|
+
- 2f86e89b1 @putout/plugin-putout-config: drop support of 🐊 < 39
|
|
25
|
+
- c948d5f1c @putout/plugin-putout: apply-exports: add
|
|
26
|
+
- 52e17b11a @putout/plugin-nodejs: convert-exports-to-module-exports: declared
|
|
27
|
+
- 3e10bd2e5 @putout/plugin-putout: check-replace-code: commonjs
|
|
28
|
+
|
|
1
29
|
2025.03.24, v39.0.12
|
|
2
30
|
|
|
3
31
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "39.0.
|
|
3
|
+
"version": "39.0.14",
|
|
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",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"@putout/plugin-coverage": "^1.0.0",
|
|
115
115
|
"@putout/plugin-declare": "^5.0.0",
|
|
116
116
|
"@putout/plugin-declare-before-reference": "^6.0.0",
|
|
117
|
-
"@putout/plugin-eslint": "^
|
|
117
|
+
"@putout/plugin-eslint": "^13.0.0",
|
|
118
118
|
"@putout/plugin-esm": "^2.0.0",
|
|
119
119
|
"@putout/plugin-extract-keywords-from-variables": "^2.0.0",
|
|
120
120
|
"@putout/plugin-extract-object-properties": "^9.0.0",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"@putout/plugin-parens": "^2.0.0",
|
|
141
141
|
"@putout/plugin-promises": "^16.0.0",
|
|
142
142
|
"@putout/plugin-putout": "^24.0.0",
|
|
143
|
-
"@putout/plugin-putout-config": "^
|
|
144
|
-
"@putout/plugin-regexp": "^
|
|
143
|
+
"@putout/plugin-putout-config": "^9.0.0",
|
|
144
|
+
"@putout/plugin-regexp": "^11.0.0",
|
|
145
145
|
"@putout/plugin-remove-console": "^6.0.0",
|
|
146
146
|
"@putout/plugin-remove-constant-conditions": "^4.0.0",
|
|
147
147
|
"@putout/plugin-remove-debugger": "^7.0.0",
|
package/putout.json
CHANGED
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"*.md": {
|
|
50
50
|
"apply-arrow": "off",
|
|
51
|
+
"assignment/convert-to-declaration": "off",
|
|
51
52
|
"conditions/apply-consistent-blocks": "off",
|
|
52
53
|
"conditions/convert-comparison-to-boolean": "off",
|
|
53
54
|
"conditions/remove-constant": "off",
|
|
@@ -67,7 +68,8 @@
|
|
|
67
68
|
"declare": "off",
|
|
68
69
|
"nodejs/declare": "off",
|
|
69
70
|
"typescript/remove-unused-types": "off",
|
|
70
|
-
"remove-nested-blocks": "off"
|
|
71
|
+
"remove-nested-blocks": "off",
|
|
72
|
+
"putout/apply-namespace-specifier": "off"
|
|
71
73
|
},
|
|
72
74
|
"*.svelte": {
|
|
73
75
|
"remove-unused-variables": "off"
|