putout 35.13.0 → 35.14.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 +24 -0
- package/lib/cli/build-plugins.js +6 -4
- package/lib/putout.js +1 -0
- package/package.json +4 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
2024.04.12, v35.14.1
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- d9c1cf78f putout: @putout/plugin-gitignore v6.0.0
|
|
5
|
+
- 8f360cfd3 putout: @putout/plugin-npmignore v5.0.0
|
|
6
|
+
- 314190495 @putout/plugin-gitignore: use ignore
|
|
7
|
+
- 577a53f79 @putout/plugin-putout: declare: ignore: add
|
|
8
|
+
|
|
9
|
+
2024.04.12, v35.14.0
|
|
10
|
+
|
|
11
|
+
fix:
|
|
12
|
+
- fee14bbd2 @putout/plugin-npmignore: message
|
|
13
|
+
|
|
14
|
+
feature:
|
|
15
|
+
- 7311d3b1b @putout/operator-ignore: add
|
|
16
|
+
- 383404e74 @putout/operator-json: fromJS: no newline
|
|
17
|
+
- 8ad2a38a9 @putout/plugin-putout: remove-unused-get-properties-argument: add
|
|
18
|
+
- efc02772d @putout/plugin-eslint: convert-rc-to-flat: safeAlign always first
|
|
19
|
+
- 088a4b2fd @putout/operate: traverseProperties: path.parentPath -> path.isCallExpression
|
|
20
|
+
- 77230e28c @putout/plugin-eslint: convert-rc-to-flat: improve support of safeAlign
|
|
21
|
+
- 43a051b58 @putout/plugin-eslint: declare: add
|
|
22
|
+
- 16fdfe713 @putout/plugin-eslint: convert-rc-to-flat: improve
|
|
23
|
+
- 3fed45ab7 @putout/plugin-eslint: convert-files-to-array: report: improve message for FlatConfig
|
|
24
|
+
|
|
1
25
|
2024.04.10, v35.13.0
|
|
2
26
|
|
|
3
27
|
fix:
|
package/lib/cli/build-plugins.js
CHANGED
package/lib/putout.js
CHANGED
|
@@ -136,6 +136,7 @@ module.exports.operator = {
|
|
|
136
136
|
...require('@putout/operator-filesystem'),
|
|
137
137
|
...require('@putout/operator-match-files'),
|
|
138
138
|
...require('@putout/operator-rename-files'),
|
|
139
|
+
...require('@putout/operator-ignore'),
|
|
139
140
|
};
|
|
140
141
|
|
|
141
142
|
module.exports.ignores = require('./ignores');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.14.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",
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"@putout/operator-add-args": "^8.0.0",
|
|
80
80
|
"@putout/operator-declare": "^9.0.0",
|
|
81
81
|
"@putout/operator-filesystem": "^4.0.0",
|
|
82
|
+
"@putout/operator-ignore": "^1.0.0",
|
|
82
83
|
"@putout/operator-json": "^2.0.0",
|
|
83
84
|
"@putout/operator-match-files": "^3.0.0",
|
|
84
85
|
"@putout/operator-regexp": "^1.0.0",
|
|
@@ -117,7 +118,7 @@
|
|
|
117
118
|
"@putout/plugin-filesystem": "^5.0.0",
|
|
118
119
|
"@putout/plugin-for-of": "^4.0.0",
|
|
119
120
|
"@putout/plugin-github": "^12.0.0",
|
|
120
|
-
"@putout/plugin-gitignore": "^
|
|
121
|
+
"@putout/plugin-gitignore": "^6.0.0",
|
|
121
122
|
"@putout/plugin-logical-expressions": "^5.0.0",
|
|
122
123
|
"@putout/plugin-madrun": "^18.0.0",
|
|
123
124
|
"@putout/plugin-math": "^2.0.0",
|
|
@@ -128,7 +129,7 @@
|
|
|
128
129
|
"@putout/plugin-montag": "^2.0.0",
|
|
129
130
|
"@putout/plugin-new": "^3.0.1",
|
|
130
131
|
"@putout/plugin-nodejs": "^11.0.0",
|
|
131
|
-
"@putout/plugin-npmignore": "^
|
|
132
|
+
"@putout/plugin-npmignore": "^5.0.0",
|
|
132
133
|
"@putout/plugin-package-json": "^7.0.0",
|
|
133
134
|
"@putout/plugin-promises": "^14.0.0",
|
|
134
135
|
"@putout/plugin-putout": "^19.0.0",
|