dcdx 1.3.0-next.47 → 1.3.0-next.49
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/lib/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { program } from 'commander';
|
|
|
3
3
|
import { realpathSync, existsSync } from 'fs';
|
|
4
4
|
import { dirname, join } from 'path';
|
|
5
5
|
|
|
6
|
-
var version = "1.3.0-next.
|
|
6
|
+
var version = "1.3.0-next.49";
|
|
7
7
|
|
|
8
8
|
const toAbsolutePath = (relativePath) => {
|
|
9
9
|
const [, filePath] = process.argv;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const findInFile: (path: string, value: string | Array<string>, caseSensitive?: boolean) => boolean;
|
|
@@ -452,13 +452,19 @@ export declare const APTDependencyTreeArgs: z.ZodObject<{
|
|
|
452
452
|
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
453
453
|
appKey: z.ZodOptional<z.ZodString>;
|
|
454
454
|
archive: z.ZodOptional<z.ZodString>;
|
|
455
|
+
groupId: z.ZodString;
|
|
456
|
+
artifactId: z.ZodString;
|
|
455
457
|
outputFile: z.ZodOptional<z.ZodString>;
|
|
456
458
|
}, "strip", z.ZodTypeAny, {
|
|
459
|
+
groupId: string;
|
|
460
|
+
artifactId: string;
|
|
457
461
|
activateProfiles?: string | undefined;
|
|
458
462
|
appKey?: string | undefined;
|
|
459
463
|
archive?: string | undefined;
|
|
460
464
|
outputFile?: string | undefined;
|
|
461
465
|
}, {
|
|
466
|
+
groupId: string;
|
|
467
|
+
artifactId: string;
|
|
462
468
|
activateProfiles?: string | undefined;
|
|
463
469
|
appKey?: string | undefined;
|
|
464
470
|
archive?: string | undefined;
|
|
@@ -468,23 +474,33 @@ export declare const APTDependencyTreeOptions: z.ZodEffects<z.ZodObject<{
|
|
|
468
474
|
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
469
475
|
appKey: z.ZodOptional<z.ZodString>;
|
|
470
476
|
archive: z.ZodOptional<z.ZodString>;
|
|
477
|
+
groupId: z.ZodString;
|
|
478
|
+
artifactId: z.ZodString;
|
|
471
479
|
outputFile: z.ZodString;
|
|
472
480
|
}, "strip", z.ZodTypeAny, {
|
|
481
|
+
groupId: string;
|
|
482
|
+
artifactId: string;
|
|
473
483
|
outputFile: string;
|
|
474
484
|
activateProfiles?: string | undefined;
|
|
475
485
|
appKey?: string | undefined;
|
|
476
486
|
archive?: string | undefined;
|
|
477
487
|
}, {
|
|
488
|
+
groupId: string;
|
|
489
|
+
artifactId: string;
|
|
478
490
|
outputFile: string;
|
|
479
491
|
activateProfiles?: string | undefined;
|
|
480
492
|
appKey?: string | undefined;
|
|
481
493
|
archive?: string | undefined;
|
|
482
494
|
}>, {
|
|
495
|
+
groupId: string;
|
|
496
|
+
artifactId: string;
|
|
483
497
|
outputFile: string;
|
|
484
498
|
activateProfiles?: string | undefined;
|
|
485
499
|
appKey?: string | undefined;
|
|
486
500
|
archive?: string | undefined;
|
|
487
501
|
}, {
|
|
502
|
+
groupId: string;
|
|
503
|
+
artifactId: string;
|
|
488
504
|
outputFile: string;
|
|
489
505
|
activateProfiles?: string | undefined;
|
|
490
506
|
appKey?: string | undefined;
|