putout 38.2.0 → 38.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 CHANGED
@@ -1,3 +1,38 @@
1
+ 2025.02.19, v38.3.1
2
+
3
+ feature:
4
+ - b0ac42adf putout: @putout/plugin-declare-before-reference v6.0.0
5
+ - ec1b1aa4d @putout/plugin-declare-before-reference: drop support of 🐊 < 38
6
+ - aa139735a @putout/declare-before-reference: exclude require
7
+ - 1ede44548 @putout/plugin-eslint: remove-spread-from-create-eslint-config: add
8
+ - f6ae23714 @putout/plugin-eslint: remove-parser-options: add
9
+ - 2584e601f @putout/plugin: add-path-to-arg-fix: no body
10
+ - f9b2209e9 @putout/plugin-commonjs: require: add support of ArrayPattern
11
+ - d680da029 @putout/processor-css: use @stylistic instead of prettier
12
+ - 49140f0ce root: lerna: drop
13
+ - 3ae38614e putout: @putout/cli-cache v5.0.0
14
+ - cb993e6bf @putout/cli-cache: convert to ESM
15
+
16
+ 2025.02.18, v38.3.0
17
+
18
+ fix:
19
+ - 7368c1f1b @putout/cli-cache: use data field (https://github.com/jaredwray/cacheable/tree/main/packages/file-entry-cache#setting-additional-meta-data)
20
+
21
+ feature:
22
+ - 945d7e658 putout: @putout/cli-cache v5.0.0
23
+ - 8baa29be3 @putout/cli-cache: convert to ESM
24
+ - 7ede62b95 putout: dynamic load of @putout/cli-cache
25
+ - 45f3bca30 @putout/cli-cache: get rid of find-up
26
+ - fcc31feb6 @putout/cli-cache: find-node-modules using escalade
27
+ - 40cd7d8ea @putout/cli-cache: find node_modules instead of package.json
28
+ - a46da87c0 cache: check mtime when change do not work
29
+ - e225bdbf4 @putout/plugin-esm: merge-duplicate-imports: duplicate-specifier
30
+ - 25dc14614 @putout/plugin-esm: sort-imports-by-specifiers: do not switch oterh then # with #
31
+ - 8f89126ac @putout/plugin-esm: group-imports-by-source: add support of hash
32
+ - d565d800e @putout/engine-runner: nessy v5.2.0
33
+ - 398f2217e @putout/engine-parser: @putout/printer v13.0.0
34
+ - f5ebcf9da @putout/plugin-convert-quotes-to-backticks: check key
35
+
1
36
  2025.02.16, v38.2.0
2
37
 
3
38
  feature:
package/lib/cli/index.js CHANGED
@@ -15,7 +15,6 @@ const {
15
15
  defaultProcessors,
16
16
  } = require('@putout/engine-processor');
17
17
 
18
- const {createCache} = require('@putout/cli-cache');
19
18
  const keyPress = require('@putout/cli-keypress');
20
19
 
21
20
  const supportedFiles = require('./supported-files');
@@ -233,6 +232,8 @@ module.exports = async ({argv, halt, log, write, logError, readFile, writeFile,
233
232
  if (noFiles)
234
233
  return exit();
235
234
 
235
+ const {createCache} = await simpleImport('@putout/cli-cache');
236
+
236
237
  const fileCache = await createCache({
237
238
  version,
238
239
  cache,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "38.2.0",
3
+ "version": "38.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",
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@putout/babel": "^3.0.0",
55
- "@putout/cli-cache": "^4.0.0",
55
+ "@putout/cli-cache": "^5.0.0",
56
56
  "@putout/cli-choose-formatter": "^4.0.0",
57
57
  "@putout/cli-keypress": "^2.0.0",
58
58
  "@putout/cli-match": "^2.0.0",
@@ -116,7 +116,7 @@
116
116
  "@putout/plugin-convert-to-arrow-function": "^4.0.0",
117
117
  "@putout/plugin-coverage": "^1.0.0",
118
118
  "@putout/plugin-declare": "^5.0.0",
119
- "@putout/plugin-declare-before-reference": "^5.0.0",
119
+ "@putout/plugin-declare-before-reference": "^6.0.0",
120
120
  "@putout/plugin-eslint": "^11.0.0",
121
121
  "@putout/plugin-esm": "^2.0.0",
122
122
  "@putout/plugin-extract-keywords-from-variables": "^2.0.0",
@@ -237,7 +237,6 @@
237
237
  "eslint-plugin-n": "^17.0.0",
238
238
  "eslint-plugin-putout": "^24.0.0",
239
239
  "just-camel-case": "^6.2.0",
240
- "lerna": "^6.0.1",
241
240
  "madrun": "^10.0.0",
242
241
  "mock-require": "^3.0.2",
243
242
  "montag": "^1.2.1",