pubm 0.0.3 → 0.0.4-0
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 +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -85,6 +85,16 @@ interface Options {
|
|
|
85
85
|
registries?: RegistryType[];
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
+
/**
|
|
89
|
+
* Runs the `pubm` function with the provided options.
|
|
90
|
+
*
|
|
91
|
+
* This function executes the publish process using the specified options.
|
|
92
|
+
* The `version` field in the `options` parameter is required for the function
|
|
93
|
+
* to run correctly.
|
|
94
|
+
*
|
|
95
|
+
* @async
|
|
96
|
+
* @function
|
|
97
|
+
*/
|
|
88
98
|
declare function pubm(options: Options): Promise<void>;
|
|
89
99
|
|
|
90
|
-
export { pubm };
|
|
100
|
+
export { type Options, pubm };
|
package/dist/index.d.ts
CHANGED
|
@@ -85,6 +85,16 @@ interface Options {
|
|
|
85
85
|
registries?: RegistryType[];
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
+
/**
|
|
89
|
+
* Runs the `pubm` function with the provided options.
|
|
90
|
+
*
|
|
91
|
+
* This function executes the publish process using the specified options.
|
|
92
|
+
* The `version` field in the `options` parameter is required for the function
|
|
93
|
+
* to run correctly.
|
|
94
|
+
*
|
|
95
|
+
* @async
|
|
96
|
+
* @function
|
|
97
|
+
*/
|
|
88
98
|
declare function pubm(options: Options): Promise<void>;
|
|
89
99
|
|
|
90
|
-
export { pubm };
|
|
100
|
+
export { type Options, pubm };
|
package/dist/index.js
CHANGED