putout 35.0.0 → 35.0.2

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,24 @@
1
+ 2024.02.01, v35.0.2
2
+
3
+ feature:
4
+ - 08e9ef8c5 putout: @putout/plugin-apply-template-literals v3.0.0
5
+ - 9d5175d22 @putout/plugin-apply-template-literals: drop support of node < 18
6
+ - 792400820 @putout/plugin-apply-template-literals: exclude newline
7
+ - a0a54c369 @putout/plugin-remove-useless-escape: add support of "./"
8
+ - e1d50e619 @putout/engine-parser: espree v10.0.0
9
+
10
+ 2024.01.29, v35.0.1
11
+
12
+ fix:
13
+ - d60069e1c eslint-plugin-putout: @typescript-eslint/no-un: disabled while ESLint v9 supported
14
+
15
+ feature:
16
+ - 54413dae8 @putout/test: strip-ansi v7.1.0
17
+ - e97fb0e7d putout: @putout/processor-json v9.0.0
18
+ - 49ca01f7c root: supertape v10.0.0
19
+ - 52a060979 @putout/plugin-minify: drop support of 🐊 < 35
20
+ - c4438f7fd @putout/plugin-minify: convert-if-to-logical: ConditionalExpression inside IfStatement (coderaiser/minify#118)
21
+
1
22
  2024.01.19, v35.0.0
2
23
 
3
24
  feature:
@@ -1,9 +1,9 @@
1
+ import process from 'node:process';
1
2
  import {EventEmitter} from 'node:events';
2
3
  import {
3
4
  parentPort,
4
5
  workerData,
5
6
  } from 'node:worker_threads';
6
- import process from 'node:process';
7
7
 
8
8
  const {assign} = Object;
9
9
 
package/bin/tracer.mjs CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  import process from 'node:process';
4
4
  import {Worker} from 'node:worker_threads';
5
- import {parseArgs} from '../lib/cli/parse-args.js';
6
5
  import {subscribe} from '@putout/engine-reporter/subscribe';
6
+ import {parseArgs} from '../lib/cli/parse-args.js';
7
7
 
8
8
  const {
9
9
  cwd,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.0.0",
3
+ "version": "35.0.2",
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",
@@ -89,7 +89,7 @@
89
89
  "@putout/plugin-apply-flat-map": "^2.0.0",
90
90
  "@putout/plugin-apply-optional-chaining": "^5.0.0",
91
91
  "@putout/plugin-apply-starts-with": "^1.0.0",
92
- "@putout/plugin-apply-template-literals": "^2.0.0",
92
+ "@putout/plugin-apply-template-literals": "^3.0.0",
93
93
  "@putout/plugin-browserlist": "^2.0.0",
94
94
  "@putout/plugin-conditions": "^4.0.0",
95
95
  "@putout/plugin-convert-apply-to-spread": "^4.0.0",
@@ -177,7 +177,7 @@
177
177
  "@putout/processor-filesystem": "^3.0.0",
178
178
  "@putout/processor-ignore": "^6.0.0",
179
179
  "@putout/processor-javascript": "^5.0.0",
180
- "@putout/processor-json": "^8.0.1",
180
+ "@putout/processor-json": "^9.0.0",
181
181
  "@putout/processor-markdown": "^12.0.0",
182
182
  "@putout/processor-yaml": "^8.0.0",
183
183
  "@putout/traverse": "^10.0.0",
@@ -227,7 +227,7 @@
227
227
  "nodemon": "^3.0.1",
228
228
  "pullout": "^4.0.0",
229
229
  "strip-ansi": "^7.0.0",
230
- "supertape": "^9.0.0"
230
+ "supertape": "^10.0.0"
231
231
  },
232
232
  "license": "MIT",
233
233
  "engines": {