forked from JS-DevTools/npm-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
66 lines (59 loc) · 1.87 KB
/
index.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
import { join } from "path";
import { npmPublish } from "../npm-publish";
import { readManifest } from "../read-manifest";
import { ExitCode } from "./exit-code";
import { usageText } from "./help";
import { parseArgs } from "./parse-args";
/**
* The main entry point of the CLI
*
* @param args - The command-line arguments
*/
export async function main(args: string[]): Promise<void> {
try {
// Setup global error handlers
process.on("uncaughtException", errorHandler);
process.on("unhandledRejection", errorHandler);
// Parse the command-line arguments
let { help, version, options } = parseArgs(args);
if (help) {
// Show the help text and exit
console.log(usageText);
process.exit(ExitCode.Success);
}
else if (version) {
// Show the version number and exit
let manifest = await readManifest(join(__dirname, "../../package.json"));
console.log(manifest.version.toString());
process.exit(ExitCode.Success);
}
else {
let results = await npmPublish(options);
if (!options.quiet) {
if (results.type === "none") {
console.log(`\n📦 ${results.package} v${results.version} is already published to NPM`);
}
else if (results.dryRun) {
console.log(`\n📦 ${results.package} v${results.version} was NOT actually published to NPM (dry run)`);
}
else {
console.log(`\n📦 Successfully published ${results.package} v${results.version} to NPM`);
}
}
}
}
catch (error) {
errorHandler(error as Error);
}
}
/**
* Prints errors to the console
*/
function errorHandler(error: Error): void {
let message = error.message || String(error);
if (process.env.DEBUG || process.env.NODE_ENV === "development") {
message = error.stack || message;
}
console.error(message);
process.exit(ExitCode.FatalError);
}