@ucdjs/release-scripts 0.1.0-beta.35 → 0.1.0-beta.37
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.mts +3 -3
- package/dist/index.mjs +843 -736
- package/package.json +2 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import "commit-parser";
|
|
2
|
-
|
|
3
1
|
//#region src/options.d.ts
|
|
4
2
|
interface FindWorkspacePackagesOptions {
|
|
5
3
|
exclude?: string[];
|
|
@@ -31,6 +29,8 @@ interface ReleaseScriptsOptionsInput {
|
|
|
31
29
|
npm?: {
|
|
32
30
|
otp?: string;
|
|
33
31
|
provenance?: boolean;
|
|
32
|
+
access?: "public" | "restricted";
|
|
33
|
+
runBuild?: boolean;
|
|
34
34
|
};
|
|
35
35
|
prompts?: {
|
|
36
36
|
versions?: boolean;
|
|
@@ -92,7 +92,7 @@ interface PackageRelease {
|
|
|
92
92
|
hasDirectChanges: boolean;
|
|
93
93
|
}
|
|
94
94
|
//#endregion
|
|
95
|
-
//#region src/types
|
|
95
|
+
//#region src/types.d.ts
|
|
96
96
|
interface ReleaseResult {
|
|
97
97
|
/**
|
|
98
98
|
* Packages that will be updated
|