putout 30.2.3 → 30.3.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 +14 -0
- package/lib/parse-options/index.js +1 -1
- package/package.json +3 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2023.07.11, v30.3.1
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 2b2674bdd package: @putout/engine-processor v8.0.0
|
|
5
|
+
- ba1061c7e package: @putout/engine-loader v10.0.0
|
|
6
|
+
- 10f632bd4 package: nodemon v3.0.1
|
|
7
|
+
|
|
8
|
+
2023.07.11, v30.3.0
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- 3df1f30b6 package: @typescript-eslint/eslint-plugin v6.0.0
|
|
12
|
+
- 92c747b33 putout: codemods: exclude files/directories started with "."
|
|
13
|
+
- f248abd67 package: @typescript-eslint/parser v6.0.0 (https://typescript-eslint.io/blog/announcing-typescript-eslint-v6/)
|
|
14
|
+
|
|
1
15
|
2023.07.10, v30.2.3
|
|
2
16
|
|
|
3
17
|
feature:
|
|
@@ -95,7 +95,7 @@ function _readOptions(name) {
|
|
|
95
95
|
return ['', {}];
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
const isInclude = (a) => !/(^not-rule-.*|^node_modules$)/.test(a);
|
|
98
|
+
const isInclude = (a) => a[0] !== '.' && !/(^not-rule-.*|^node_modules$)/.test(a);
|
|
99
99
|
|
|
100
100
|
function readRules(dirOpt, rulesDir) {
|
|
101
101
|
if (!rulesDir)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.3.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",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@putout/compare": "^11.0.0",
|
|
56
56
|
"@putout/engine-loader": "^10.0.0",
|
|
57
57
|
"@putout/engine-parser": "^7.0.0",
|
|
58
|
-
"@putout/engine-processor": "^
|
|
58
|
+
"@putout/engine-processor": "^8.0.0",
|
|
59
59
|
"@putout/engine-runner": "^17.0.0",
|
|
60
60
|
"@putout/eslint": "^2.0.0",
|
|
61
61
|
"@putout/formatter-codeframe": "^4.0.0",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"madrun": "^9.0.0",
|
|
216
216
|
"mock-require": "^3.0.2",
|
|
217
217
|
"montag": "^1.2.1",
|
|
218
|
-
"nodemon": "^
|
|
218
|
+
"nodemon": "^3.0.1",
|
|
219
219
|
"pullout": "^4.0.0",
|
|
220
220
|
"strip-ansi": "^7.0.0",
|
|
221
221
|
"supertape": "^8.0.0"
|