@pipelab/plugin-core 1.0.1-beta.2 โ 1.0.1-beta.21
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.md +126 -0
- package/dist/index.cjs +96 -194
- package/dist/index.d.cts +39 -78
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +39 -78
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +53 -188
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -15
- package/src/archive-utils.ts +5 -15
- package/src/pipelab.ts +62 -70
- package/src/utils.ts +17 -242
- package/tsdown.config.ts +7 -0
- package/.turbo/turbo-build.log +0 -364
- package/.turbo/turbo-lint.log +0 -36
package/.turbo/turbo-lint.log
DELETED
|
@@ -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
|
-
[38;2;244;191;117;1mโ [0m ]8;;https://oxc.rs/docs/guide/usage/linter/rules/eslint/no-unused-vars.html\[38;2;244;191;117;1meslint(no-unused-vars)[0m]8;;\: [38;2;244;191;117;1mIdentifier 'mkdir' is imported but never used.[0m
|
|
8
|
-
โญโ[[38;2;92;157;255;1msrc/archive-utils.ts[0m:1:10]
|
|
9
|
-
[2m1[0m โ import { mkdir, createReadStream, createWriteStream } from "node:fs";
|
|
10
|
-
ยท [38;2;246;87;248m โโโฌโโ[0m
|
|
11
|
-
ยท [38;2;246;87;248mโฐโโ [38;2;246;87;248m'mkdir' is imported here[0m[0m
|
|
12
|
-
[2m2[0m โ import { mkdir as mkdirP } from "node:fs/promises";
|
|
13
|
-
โฐโโโโ
|
|
14
|
-
[38;2;106;159;181m help: [0mConsider removing this import.
|
|
15
|
-
|
|
16
|
-
[38;2;244;191;117;1mโ [0m ]8;;https://oxc.rs/docs/guide/usage/linter/rules/unicorn/prefer-string-starts-ends-with.html\[38;2;244;191;117;1meslint-plugin-unicorn(prefer-string-starts-ends-with)[0m]8;;\: [38;2;244;191;117;1mPrefer String#endsWith over a regex with a dollar sign.[0m
|
|
17
|
-
โญโ[[38;2;92;157;255;1msrc/archive-utils.ts[0m:64:13]
|
|
18
|
-
[2m63[0m โ
|
|
19
|
-
[2m64[0m โ if (/\/$/.test(entry.fileName)) {
|
|
20
|
-
ยท [38;2;246;87;248m โโโโโโโโโโ[0m
|
|
21
|
-
[2m65[0m โ // It's a directory
|
|
22
|
-
โฐโโโโ
|
|
23
|
-
[38;2;106;159;181m help: [0mReplace `/\/$/.test(entry.fileName)` with `entry.fileName.endsWith('/')`.
|
|
24
|
-
|
|
25
|
-
[38;2;244;191;117;1mโ [0m ]8;;https://oxc.rs/docs/guide/usage/linter/rules/eslint/no-unused-vars.html\[38;2;244;191;117;1meslint(no-unused-vars)[0m]8;;\: [38;2;244;191;117;1mCatch parameter 'e' is caught but never used.[0m
|
|
26
|
-
โญโ[[38;2;92;157;255;1msrc/utils.ts[0m:231:12]
|
|
27
|
-
[2m230[0m โ return finalPath;
|
|
28
|
-
[2m231[0m โ } catch (e) {
|
|
29
|
-
ยท [38;2;246;87;248m โฌ[0m
|
|
30
|
-
ยท [38;2;246;87;248mโฐโโ [38;2;246;87;248m'e' is declared here[0m[0m
|
|
31
|
-
[2m232[0m โ console.log(`NPM package ${name}@${version} not found at ${finalPath}, installing...`);
|
|
32
|
-
โฐโโโโ
|
|
33
|
-
[38;2;106;159;181m help: [0mConsider handling this error.
|
|
34
|
-
|
|
35
|
-
Found 3 warnings and 0 errors.
|
|
36
|
-
Finished in 26ms on 8 files with 93 rules using 16 threads.
|