pubm 0.2.1 → 0.2.2
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/bin/cli.js +660 -404
- package/dist/index.cjs +369 -151
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +368 -150
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -112,6 +112,11 @@ interface Options {
|
|
|
112
112
|
* @default false
|
|
113
113
|
*/
|
|
114
114
|
publishOnly?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* @description Simulate CI publish locally (dry-run with token-based auth)
|
|
117
|
+
* @default false
|
|
118
|
+
*/
|
|
119
|
+
preflight?: boolean;
|
|
115
120
|
/**
|
|
116
121
|
* @description Publish under a specific dist-tag
|
|
117
122
|
* @default "latest"
|
package/dist/index.d.ts
CHANGED
|
@@ -112,6 +112,11 @@ interface Options {
|
|
|
112
112
|
* @default false
|
|
113
113
|
*/
|
|
114
114
|
publishOnly?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* @description Simulate CI publish locally (dry-run with token-based auth)
|
|
117
|
+
* @default false
|
|
118
|
+
*/
|
|
119
|
+
preflight?: boolean;
|
|
115
120
|
/**
|
|
116
121
|
* @description Publish under a specific dist-tag
|
|
117
122
|
* @default "latest"
|