putout 35.14.1 → 35.15.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 +17 -0
- package/package.json +2 -1
- package/putout.json +5 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
2024.04.13, v35.15.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 9e5cc8f10 @putout/operator-ignore: __json: property
|
|
5
|
+
- 0b32f4415 @putout/plugin-putout: remove-unused-get-properties-argument: exclude not StringLiteral
|
|
6
|
+
- 0855fa787 @putout/plugin-npmignore: message
|
|
7
|
+
|
|
8
|
+
feature:
|
|
9
|
+
- 09ae16147 putout: add @putout/plugin-coverage
|
|
10
|
+
- 228414483 @putout/plugin-coverage: add
|
|
11
|
+
- a961d86ce putout: @putout/plugin-gitignore v6.0.0
|
|
12
|
+
- fea9d47f9 putout: @putout/plugin-npmignore v5.0.0
|
|
13
|
+
- 95af1575f @putout/plugin-gitignore: use ignore
|
|
14
|
+
- 59361fac9 @putout/plugin-putout: declare: ignore: add
|
|
15
|
+
- 0e78b78b3 @putout/operator-ignore: add
|
|
16
|
+
- 3eb9a5b45 @putout/operator-json: fromJS: no newline
|
|
17
|
+
|
|
1
18
|
2024.04.12, v35.14.1
|
|
2
19
|
|
|
3
20
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.15.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",
|
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"@putout/plugin-convert-quotes-to-backticks": "^3.0.0",
|
|
110
110
|
"@putout/plugin-convert-template-to-string": "^2.0.0",
|
|
111
111
|
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
|
|
112
|
+
"@putout/plugin-coverage": "^1.0.0",
|
|
112
113
|
"@putout/plugin-declare": "^3.0.0",
|
|
113
114
|
"@putout/plugin-declare-before-reference": "^3.0.0",
|
|
114
115
|
"@putout/plugin-declare-imports-first": "^2.0.0",
|
package/putout.json
CHANGED
|
@@ -88,6 +88,9 @@
|
|
|
88
88
|
".npmignore": {
|
|
89
89
|
"npmignore": "on"
|
|
90
90
|
},
|
|
91
|
+
".{nyc,c8}rc.json": {
|
|
92
|
+
"coverage": "on"
|
|
93
|
+
},
|
|
91
94
|
".*ignore": {
|
|
92
95
|
"convert-quotes-to-backticks": "off"
|
|
93
96
|
},
|
|
@@ -156,6 +159,7 @@
|
|
|
156
159
|
"**/.git"
|
|
157
160
|
],
|
|
158
161
|
"rules": {
|
|
162
|
+
"coverage": "off",
|
|
159
163
|
"typescript": "off",
|
|
160
164
|
"nodejs/convert-esm-to-commonjs": "off",
|
|
161
165
|
"nodejs/convert-commonjs-to-esm": "off",
|
|
@@ -254,6 +258,7 @@
|
|
|
254
258
|
"putout-config",
|
|
255
259
|
"promises",
|
|
256
260
|
"typescript",
|
|
261
|
+
"coverage",
|
|
257
262
|
"gitignore",
|
|
258
263
|
"npmignore",
|
|
259
264
|
"browserlist",
|