putout 38.2.0 → 38.3.0

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,23 @@
1
+ 2025.02.18, v38.3.0
2
+
3
+ fix:
4
+ - 7368c1f1b @putout/cli-cache: use data field (https://github.com/jaredwray/cacheable/tree/main/packages/file-entry-cache#setting-additional-meta-data)
5
+
6
+ feature:
7
+ - 945d7e658 putout: @putout/cli-cache v5.0.0
8
+ - 8baa29be3 @putout/cli-cache: convert to ESM
9
+ - 7ede62b95 putout: dynamic load of @putout/cli-cache
10
+ - 45f3bca30 @putout/cli-cache: get rid of find-up
11
+ - fcc31feb6 @putout/cli-cache: find-node-modules using escalade
12
+ - 40cd7d8ea @putout/cli-cache: find node_modules instead of package.json
13
+ - a46da87c0 cache: check mtime when change do not work
14
+ - e225bdbf4 @putout/plugin-esm: merge-duplicate-imports: duplicate-specifier
15
+ - 25dc14614 @putout/plugin-esm: sort-imports-by-specifiers: do not switch oterh then # with #
16
+ - 8f89126ac @putout/plugin-esm: group-imports-by-source: add support of hash
17
+ - d565d800e @putout/engine-runner: nessy v5.2.0
18
+ - 398f2217e @putout/engine-parser: @putout/printer v13.0.0
19
+ - f5ebcf9da @putout/plugin-convert-quotes-to-backticks: check key
20
+
1
21
  2025.02.16, v38.2.0
2
22
 
3
23
  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.0",
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",