putout 29.0.5 → 29.0.7
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 +26 -0
- package/package.json +6 -5
- package/putout.json +2 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
2023.03.10, v29.0.7
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 39a973e5c @putout/plugin-declare-before-reference: exclude ExportNamedDeclaration (#134)
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- 9eca8816c package: @putout/plugin-declare-before-reference v2.0.0
|
|
8
|
+
- aff993608 @putout/plugin-declare-before-reference: drop support of 🐊 < 29
|
|
9
|
+
- d1743b555 @putout/plugin-declare-before-reference: drop support of node < 16
|
|
10
|
+
|
|
11
|
+
2023.03.10, v29.0.6
|
|
12
|
+
|
|
13
|
+
feature:
|
|
14
|
+
- 0af80e51a package: @putout/operator-declare v5.0.0
|
|
15
|
+
- b306cf6fe package: @putout/operator-declare v5.0.0
|
|
16
|
+
- 62f3355ae package: @putout/engine-loader v8.0.0
|
|
17
|
+
- 3a4a99b07 package: @putout/engine-runner v15.0.0
|
|
18
|
+
- 017bb3ba0 package: @putout/test v6.0.0
|
|
19
|
+
- f89823aab @putout/plugin-declare: convert to Declarator
|
|
20
|
+
- a0c7d1682 @putout/types: add
|
|
21
|
+
- 39901c763 @putout/test: add support of Declarator
|
|
22
|
+
- b5b4d0001 @putout/plugin-declare: move out is-type to types/declare
|
|
23
|
+
- 9fb14536d @putout/operator-declare: require: putout -> @putout/engine-parser, @babel/types
|
|
24
|
+
- d15347e94 @putout/engine-loader: add support of Declarator
|
|
25
|
+
- 3ded80721 @putout/engine-runner: add support of Declarator
|
|
26
|
+
|
|
1
27
|
2023.03.09, v29.0.5
|
|
2
28
|
|
|
3
29
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "29.0.
|
|
3
|
+
"version": "29.0.7",
|
|
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",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"@putout/cli-ruler": "^2.0.0",
|
|
53
53
|
"@putout/cli-validate-args": "^1.0.0",
|
|
54
54
|
"@putout/compare": "^9.0.0",
|
|
55
|
-
"@putout/engine-loader": "^
|
|
55
|
+
"@putout/engine-loader": "^8.0.0",
|
|
56
56
|
"@putout/engine-parser": "^5.0.0",
|
|
57
57
|
"@putout/engine-processor": "^6.0.0",
|
|
58
|
-
"@putout/engine-runner": "^
|
|
58
|
+
"@putout/engine-runner": "^15.0.0",
|
|
59
59
|
"@putout/eslint": "^1.0.0",
|
|
60
60
|
"@putout/formatter-codeframe": "^4.0.0",
|
|
61
61
|
"@putout/formatter-dump": "^4.0.0",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@putout/formatter-stream": "^4.0.0",
|
|
69
69
|
"@putout/operate": "^8.0.0",
|
|
70
70
|
"@putout/operator-add-args": "^3.0.0",
|
|
71
|
-
"@putout/operator-declare": "^
|
|
71
|
+
"@putout/operator-declare": "^5.0.0",
|
|
72
72
|
"@putout/operator-regexp": "^1.0.0",
|
|
73
73
|
"@putout/plugin-apply-at": "^1.0.0",
|
|
74
74
|
"@putout/plugin-apply-comparison-order": "^1.0.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"@putout/plugin-convert-to-arrow-function": "^3.0.0",
|
|
105
105
|
"@putout/plugin-convert-typeof-to-is-type": "^2.0.0",
|
|
106
106
|
"@putout/plugin-declare": "^1.0.1",
|
|
107
|
-
"@putout/plugin-declare-before-reference": "^
|
|
107
|
+
"@putout/plugin-declare-before-reference": "^2.0.0",
|
|
108
108
|
"@putout/plugin-declare-imports-first": "^2.0.0",
|
|
109
109
|
"@putout/plugin-eslint": "^4.2.0",
|
|
110
110
|
"@putout/plugin-extract-object-properties": "^8.0.0",
|
|
@@ -171,6 +171,7 @@
|
|
|
171
171
|
"@putout/plugin-strict-mode": "^5.0.0",
|
|
172
172
|
"@putout/plugin-tape": "^10.0.0",
|
|
173
173
|
"@putout/plugin-try-catch": "^1.0.0",
|
|
174
|
+
"@putout/plugin-types": "^1.0.0",
|
|
174
175
|
"@putout/plugin-typescript": "^3.0.0",
|
|
175
176
|
"@putout/plugin-webpack": "^2.0.0",
|
|
176
177
|
"@putout/processor-css": "^6.0.0",
|