@pipelab/plugin-core 1.0.1-beta.2 โ†’ 1.0.1-beta.20

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.
@@ -1,36 +0,0 @@
1
-
2
-
3
- > @pipelab/plugin-core@1.0.0 lint /run/media/armaldio/SSD/Projects/Pipelab/pipelab/packages/plugin-core
4
- > oxlint .
5
-
6
-
7
- โš  ]8;;https://oxc.rs/docs/guide/usage/linter/rules/eslint/no-unused-vars.html\eslint(no-unused-vars)]8;;\: Identifier 'mkdir' is imported but never used.
8
- โ•ญโ”€[src/archive-utils.ts:1:10]
9
- 1 โ”‚ import { mkdir, createReadStream, createWriteStream } from "node:fs";
10
- ยท  โ”€โ”€โ”ฌโ”€โ”€
11
- ยท โ•ฐโ”€โ”€ 'mkdir' is imported here
12
- 2 โ”‚ import { mkdir as mkdirP } from "node:fs/promises";
13
- โ•ฐโ”€โ”€โ”€โ”€
14
-  help: Consider removing this import.
15
-
16
- โš  ]8;;https://oxc.rs/docs/guide/usage/linter/rules/unicorn/prefer-string-starts-ends-with.html\eslint-plugin-unicorn(prefer-string-starts-ends-with)]8;;\: Prefer String#endsWith over a regex with a dollar sign.
17
- โ•ญโ”€[src/archive-utils.ts:64:13]
18
- 63 โ”‚
19
- 64 โ”‚ if (/\/$/.test(entry.fileName)) {
20
- ยท  โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
21
- 65 โ”‚ // It's a directory
22
- โ•ฐโ”€โ”€โ”€โ”€
23
-  help: Replace `/\/$/.test(entry.fileName)` with `entry.fileName.endsWith('/')`.
24
-
25
- โš  ]8;;https://oxc.rs/docs/guide/usage/linter/rules/eslint/no-unused-vars.html\eslint(no-unused-vars)]8;;\: Catch parameter 'e' is caught but never used.
26
- โ•ญโ”€[src/utils.ts:231:12]
27
- 230 โ”‚ return finalPath;
28
- 231 โ”‚ } catch (e) {
29
- ยท  โ”ฌ
30
- ยท โ•ฐโ”€โ”€ 'e' is declared here
31
- 232 โ”‚ console.log(`NPM package ${name}@${version} not found at ${finalPath}, installing...`);
32
- โ•ฐโ”€โ”€โ”€โ”€
33
-  help: Consider handling this error.
34
-
35
- Found 3 warnings and 0 errors.
36
- Finished in 26ms on 8 files with 93 rules using 16 threads.