forked from JS-DevTools/npm-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm.ts
73 lines (59 loc) · 2.3 KB
/
npm.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
68
69
70
71
72
73
import * as ezSpawn from "@jsdevtools/ez-spawn";
import { ono } from "@jsdevtools/ono";
import { StdioOptions } from "child_process";
import { dirname, resolve } from "path";
import { SemVer } from "semver";
import { NormalizedOptions } from "./normalize-options";
import { setNpmConfig } from "./npm-config";
import { getNpmEnvironment } from "./npm-env";
import { Manifest } from "./read-manifest";
/**
* Runs NPM commands.
* @internal
*/
export const npm = {
/**
* Gets the latest published version of the specified package.
*/
async getLatestVersion(name: string, options: NormalizedOptions): Promise<SemVer> {
// Update the NPM config with the specified registry and token
await setNpmConfig(options);
try {
// Get the environment variables to pass to NPM
let env = getNpmEnvironment(options);
options.debug(`Running command: npm view ${name} version`);
// Run NPM to get the latest published version of the package
let { stdout } = await ezSpawn.async("npm", ["view", name, "version"], { env });
let version = stdout.trim();
// Parse/validate the version number
let semver = new SemVer(version);
options.debug(`The local version of ${name} is at v${semver}`);
return semver;
}
catch (error) {
throw ono(error, `Unable to determine the current version of ${name} on NPM.`);
}
},
/**
* Publishes the specified package to NPM
*/
async publish({ name, version }: Manifest, options: NormalizedOptions): Promise<void> {
// Update the NPM config with the specified registry and token
await setNpmConfig(options);
try {
// Run "npm publish" in the package.json directory
let cwd = resolve(dirname(options.package));
// Determine whether to suppress NPM's output
let stdio: StdioOptions = options.quiet ? "pipe" : "inherit";
// Get the environment variables to pass to NPM
let env = getNpmEnvironment(options);
options.debug("Running command: npm publish", { stdio, cwd, env });
let command = options.dryRun ? ["publish", "--dry-run"] : ["publish"];
// Run NPM to publish the package
await ezSpawn.async("npm", command, { cwd, stdio, env });
}
catch (error) {
throw ono(error, `Unable to publish ${name} v${version} to NPM.`);
}
},
};