putout 35.35.5 → 35.35.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 CHANGED
@@ -1,3 +1,22 @@
1
+ 2024.06.24, v35.35.7
2
+
3
+ fix:
4
+ - 3c23a9640 putout: parse-error: braces
5
+ - 4efc9b2ca @putout/operate: extract: quotes
6
+
7
+ feature:
8
+ - 21e064702 @putout/plugin-eslint: convert-plugins-array-to-object
9
+ - 798a45c47 @putout/plugin-convert-const-to-let: exclude: declare
10
+
11
+ 2024.06.22, v35.35.6
12
+
13
+ fix:
14
+ - 4956733ec putout: cli: pass processorRunners
15
+ - 01e1ac3f5 @putout/engine-processor: picomatch works differently on win/unix (#208)
16
+
17
+ feature:
18
+ - 8cb43358c @putout/engine-loader: createAsyncLoader: get rid of nanomemoize
19
+
1
20
  2024.06.21, v35.35.5
2
21
 
3
22
  fix:
package/lib/cli/index.js CHANGED
@@ -261,6 +261,7 @@ module.exports = async ({argv, halt, log, write, logError, readFile, writeFile,
261
261
  };
262
262
 
263
263
  const {places, exited} = await run({
264
+ processorRunners,
264
265
  trace,
265
266
  fix,
266
267
  exit,
@@ -20,10 +20,5 @@ module.exports = (e) => {
20
20
  };
21
21
 
22
22
  function cutBrackets(a) {
23
- const index = a.lastIndexOf('(');
24
-
25
- if (!~index)
26
- return a;
27
-
28
- return a.slice(0, index);
23
+ return a.replace(/\s\(\d:\d+\)/, '');
29
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.35.5",
3
+ "version": "35.35.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",