putout 35.15.0 → 35.16.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 CHANGED
@@ -1,3 +1,43 @@
1
+ 2024.04.25, v35.16.1
2
+
3
+ fix:
4
+ - ec9c33c76 @putout/plugin-eslint: apply-match-to-flat: match declared
5
+ - 5daeef38d @putout/eslint-flat: match-to-flat-dir: ignores: fn
6
+
7
+ feature:
8
+ - d0daabdb9 @putout/plugin-github: set-node-version: node v22 (https://nodejs.org/en/blog/announcements/v22-release-announce)
9
+ - 90b33aee6 @putout/eslint-flat: match-to-flat-dir: ignores
10
+ - c68f66b2f @putout/plugin-eslint: apply-match-to-flat: export match
11
+ - 79c3afc15 @putout/plugin-eslint: apply-match-to-flat: add
12
+ - ab03dc406 @putout/remove-unused-get-properties-argument: exclude not ObjectPattern
13
+ - d7c28b381 @putout/plugin-eslint: declare: add support of @putout/eslint-flat
14
+ - 6bef4fcdd @putout/eslint-flat: add
15
+ - bbef3c8d2 eslint-flat: mergeESLintConfigs: add
16
+
17
+ 2024.04.21, v35.16.0
18
+
19
+ fix:
20
+ - c4ad97e8b @putout/operator-match-files: rename
21
+ - e5dbaca94 @putout/operator-match-files: dot
22
+ - 0c02ccf22 eslint: cwd
23
+
24
+ feature:
25
+ - 463d2646f putout: @putout/plugin-types v4.0.0
26
+ - 7f971e8ba putout: @putout/plugin-declare v4.0.0
27
+ - 3b043c38f @putout/plugin-declare: isArray: move out to @putout/plugin-types
28
+ - 844e20dbb @putout/plugin-types: drop support of node < 18
29
+ - bd2e91935 @putout/plugin-types: declare: isArray, isEmptyArray: add
30
+ - 5fa1a1cd5 @putout/eslint-flat: move out matchToFlat
31
+ - 8c8705b95 @putout/eslint-flat: add support of FlatConfig
32
+ - baf9706c6 @putout/eslint-flat: add
33
+ - 1ba8ae649 @putout/operator-match-files: improve rename
34
+ - ed0d47673 @putout/eslint: get-eslint: Flat Config
35
+ - 65aaa5a93 @putout/eslint: improve support of FlatConfig
36
+ - d4b426a3c @putout/operator-match-file: find existing
37
+ - 405300d88 @putout/operator-filesystem: maybeRemoveFile: search in current directory only
38
+ - f561bfd03 @putout/operator-match-files: copy -> rename
39
+ - 812886108 @putout/operator-ignore: __json: no property found
40
+
1
41
  2024.04.13, v35.15.0
2
42
 
3
43
  fix:
package/README.md CHANGED
@@ -14,7 +14,17 @@
14
14
 
15
15
  ![putout](https://github.com/coderaiser/putout/blob/master/images/putout-logo.svg)
16
16
 
17
- 🐊**Putout** is a pluggable and configurable code transformer with built-in ESLint and Babel plugins support for js, jsx, typescript and flow files. It has [a lot of transformations](https://github.com/coderaiser/putout#-built-in-transformations) that will keep your codebase in a clean state, transforming any code smell to readable code according to best practices.
17
+ 🐊**Putout** is a JavaScript Linter, pluggable and configurable code transformer, drop-in **ESLint** replacement with built-in [code printer](https://github.com/putoutjs/printer). It has a lot of transformations that keeps your codebase in a clean state, removing any code smell and making code readable according to best practices. The main target is JavaScript, but:
18
+
19
+ - ✅ JSX;
20
+ - ✅ TypeScript;
21
+ - ✅ Flow;
22
+ - ✅ Yaml;
23
+ - ✅ Markdown;
24
+ - ✅ JSON;
25
+ - ✅ Ignore;
26
+
27
+ are also supported. Here is how it looks like:
18
28
 
19
29
  [![putout](https://asciinema.org/a/0akg9gkJdbmbGl6BbpaycgKZm.svg)](https://asciinema.org/a/0akg9gkJdbmbGl6BbpaycgKZm)
20
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.15.0",
3
+ "version": "35.16.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",
@@ -110,7 +110,7 @@
110
110
  "@putout/plugin-convert-template-to-string": "^2.0.0",
111
111
  "@putout/plugin-convert-to-arrow-function": "^4.0.0",
112
112
  "@putout/plugin-coverage": "^1.0.0",
113
- "@putout/plugin-declare": "^3.0.0",
113
+ "@putout/plugin-declare": "^4.0.0",
114
114
  "@putout/plugin-declare-before-reference": "^3.0.0",
115
115
  "@putout/plugin-declare-imports-first": "^2.0.0",
116
116
  "@putout/plugin-eslint": "^8.0.0",
@@ -175,7 +175,7 @@
175
175
  "@putout/plugin-split-variable-declarations": "^3.0.0",
176
176
  "@putout/plugin-tape": "^14.0.0",
177
177
  "@putout/plugin-try-catch": "^3.0.0",
178
- "@putout/plugin-types": "^3.0.0",
178
+ "@putout/plugin-types": "^4.0.0",
179
179
  "@putout/plugin-typescript": "^7.0.0",
180
180
  "@putout/plugin-webpack": "^3.0.0",
181
181
  "@putout/processor-css": "^9.0.0",
@@ -218,6 +218,7 @@
218
218
  "unused"
219
219
  ],
220
220
  "devDependencies": {
221
+ "@putout/eslint-flat": "^1.0.0",
221
222
  "@putout/plugin-apply-entries": "^2.0.0",
222
223
  "c8": "^9.0.0",
223
224
  "currify": "^4.0.0",
package/putout.json CHANGED
@@ -77,7 +77,8 @@
77
77
  "versions": [
78
78
  "18.x",
79
79
  "20.x",
80
- "21.x"
80
+ "21.x",
81
+ "22.x"
81
82
  ]
82
83
  }],
83
84
  "remove-useless-escape": "off"