pubm 0.0.0-alpha.21 → 0.0.0-alpha.4
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/README.md +35 -86
- package/bin/.pubm/NjcyMGM5OTA3Yzk3MWMyZjEwYTYxOTQwMGZmOWM0ZTA= +1 -1
- package/bin/cli.js +190 -4548
- package/dist/index.cjs +186 -4531
- package/dist/index.d.cts +15 -5
- package/dist/index.d.ts +15 -5
- package/dist/index.js +170 -4540
- package/package.json +1 -3
package/dist/index.d.cts
CHANGED
|
@@ -29,6 +29,11 @@ interface Options {
|
|
|
29
29
|
* @default false
|
|
30
30
|
*/
|
|
31
31
|
anyBranch?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* @description Skip cleaning the `node_modules` directory
|
|
34
|
+
* @default false
|
|
35
|
+
*/
|
|
36
|
+
skipCleanup?: boolean;
|
|
32
37
|
/**
|
|
33
38
|
* @description Skip running tests before publishing
|
|
34
39
|
* @default false
|
|
@@ -59,20 +64,25 @@ interface Options {
|
|
|
59
64
|
* @default false
|
|
60
65
|
*/
|
|
61
66
|
skipConditionsCheck?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* @description Skip both cleanup and tests
|
|
69
|
+
* @default false
|
|
70
|
+
*/
|
|
71
|
+
yolo?: boolean;
|
|
62
72
|
/**
|
|
63
73
|
* @description Publish under a specific dist-tag
|
|
64
74
|
* @default "latest"
|
|
65
75
|
*/
|
|
66
76
|
tag?: string;
|
|
67
77
|
/**
|
|
68
|
-
* @description
|
|
78
|
+
* @description Use a specific package manager
|
|
79
|
+
* @default 'packageManager' field in package.json or package manager configuration file
|
|
69
80
|
*/
|
|
70
|
-
|
|
81
|
+
packageManager?: string;
|
|
71
82
|
/**
|
|
72
|
-
* @description
|
|
73
|
-
* @default true
|
|
83
|
+
* @description Subdirectory to publish
|
|
74
84
|
*/
|
|
75
|
-
|
|
85
|
+
contents?: string;
|
|
76
86
|
/**
|
|
77
87
|
* @description Target registries for publish
|
|
78
88
|
* @default ['npm', 'jsr']
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,11 @@ interface Options {
|
|
|
29
29
|
* @default false
|
|
30
30
|
*/
|
|
31
31
|
anyBranch?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* @description Skip cleaning the `node_modules` directory
|
|
34
|
+
* @default false
|
|
35
|
+
*/
|
|
36
|
+
skipCleanup?: boolean;
|
|
32
37
|
/**
|
|
33
38
|
* @description Skip running tests before publishing
|
|
34
39
|
* @default false
|
|
@@ -59,20 +64,25 @@ interface Options {
|
|
|
59
64
|
* @default false
|
|
60
65
|
*/
|
|
61
66
|
skipConditionsCheck?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* @description Skip both cleanup and tests
|
|
69
|
+
* @default false
|
|
70
|
+
*/
|
|
71
|
+
yolo?: boolean;
|
|
62
72
|
/**
|
|
63
73
|
* @description Publish under a specific dist-tag
|
|
64
74
|
* @default "latest"
|
|
65
75
|
*/
|
|
66
76
|
tag?: string;
|
|
67
77
|
/**
|
|
68
|
-
* @description
|
|
78
|
+
* @description Use a specific package manager
|
|
79
|
+
* @default 'packageManager' field in package.json or package manager configuration file
|
|
69
80
|
*/
|
|
70
|
-
|
|
81
|
+
packageManager?: string;
|
|
71
82
|
/**
|
|
72
|
-
* @description
|
|
73
|
-
* @default true
|
|
83
|
+
* @description Subdirectory to publish
|
|
74
84
|
*/
|
|
75
|
-
|
|
85
|
+
contents?: string;
|
|
76
86
|
/**
|
|
77
87
|
* @description Target registries for publish
|
|
78
88
|
* @default ['npm', 'jsr']
|