cross-release-cli 0.1.0 → 0.2.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/cross-release.js +1 -1
- package/dist/app.d.ts +26 -25
- package/dist/app.js +628 -573
- package/dist/index.d.ts +4 -3
- package/dist/index.js +5 -5
- package/dist/types.d-PDBL5zNm.d.ts +114 -0
- package/package.json +16 -11
- package/dist/types.d.ts +0 -127
package/bin/cross-release.js
CHANGED
package/dist/app.d.ts
CHANGED
|
@@ -1,29 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { ReleaseOptions } from "./types.d-PDBL5zNm.js";
|
|
2
|
+
import { ProjectFile } from "cross-bump";
|
|
3
3
|
|
|
4
|
+
//#region src/app.d.ts
|
|
4
5
|
declare class App {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
get projectFiles(): ProjectFile[];
|
|
6
|
+
#private;
|
|
7
|
+
private _currentVersion;
|
|
8
|
+
private _modifiedFiles;
|
|
9
|
+
private _nextVersion;
|
|
10
|
+
private _options;
|
|
11
|
+
private _projectFiles;
|
|
12
|
+
private _taskQueue;
|
|
13
|
+
private _taskStatus;
|
|
14
|
+
constructor(argv?: string[]);
|
|
15
|
+
checkGitClean(): void;
|
|
16
|
+
confirmReleaseOptions(): Promise<void>;
|
|
17
|
+
executeTasks(): Promise<void>;
|
|
18
|
+
resolveExecutes(): void;
|
|
19
|
+
resolveNextVersion(): Promise<void>;
|
|
20
|
+
resolveProjectFiles(): void;
|
|
21
|
+
resolveProjects(): void;
|
|
22
|
+
run(): Promise<void>;
|
|
23
|
+
get currentVersion(): string;
|
|
24
|
+
get nextVersion(): string;
|
|
25
|
+
get options(): ReleaseOptions;
|
|
26
|
+
get projectFiles(): ProjectFile[];
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
//#endregion
|
|
30
|
+
export { App as default };
|