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/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 Subdirectory to publish
78
+ * @description Use a specific package manager
79
+ * @default 'packageManager' field in package.json or package manager configuration file
69
80
  */
70
- contents?: string;
81
+ packageManager?: string;
71
82
  /**
72
- * @description Do not save jsr tokens (request the token each time)
73
- * @default true
83
+ * @description Subdirectory to publish
74
84
  */
75
- saveToken?: boolean;
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 Subdirectory to publish
78
+ * @description Use a specific package manager
79
+ * @default 'packageManager' field in package.json or package manager configuration file
69
80
  */
70
- contents?: string;
81
+ packageManager?: string;
71
82
  /**
72
- * @description Do not save jsr tokens (request the token each time)
73
- * @default true
83
+ * @description Subdirectory to publish
74
84
  */
75
- saveToken?: boolean;
85
+ contents?: string;
76
86
  /**
77
87
  * @description Target registries for publish
78
88
  * @default ['npm', 'jsr']