-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinitial-parameters.ts
67 lines (61 loc) · 2.08 KB
/
initial-parameters.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os from 'os';
import path from 'path';
import { readCommandLineArguments } from './command-line-arguments.js';
import type { WriteStreamLike } from './fs.js';
import type { Project } from './project.js';
import { readProject } from './project.js';
/**
* The type of release being created as determined by the parent release.
*
* - An *ordinary* release includes features or fixes applied against the
* latest release and is designated by bumping the first part of that release's
* version string.
* - A *backport* release includes fixes applied against a previous release and
* is designated by bumping the second part of that release's version string.
*/
export type ReleaseType = 'ordinary' | 'backport';
type InitialParameters = {
project: Project;
tempDirectoryPath: string;
reset: boolean;
releaseType: ReleaseType;
defaultBranch: string;
};
/**
* Reads the inputs given to this tool via `process.argv` and uses them to
* gather information about the project the tool can use to run.
*
* @param args - The arguments to this function.
* @param args.argv - The arguments to this executable.
* @param args.cwd - The directory in which this executable was run.
* @param args.stderr - A stream that can be used to write to standard error.
* @returns The initial parameters.
*/
export async function determineInitialParameters({
argv,
cwd,
stderr,
}: {
argv: string[];
cwd: string;
stderr: WriteStreamLike;
}): Promise<InitialParameters> {
const args = await readCommandLineArguments(argv);
const projectDirectoryPath = path.resolve(cwd, args.projectDirectory);
const project = await readProject(projectDirectoryPath, { stderr });
const tempDirectoryPath =
args.tempDirectory === undefined
? path.join(
os.tmpdir(),
'create-release-branch',
project.rootPackage.validatedManifest.name.replace('/', '__'),
)
: path.resolve(cwd, args.tempDirectory);
return {
project,
tempDirectoryPath,
reset: args.reset,
defaultBranch: args.defaultBranch,
releaseType: args.backport ? 'backport' : 'ordinary',
};
}