forked from JS-DevTools/npm-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuse-npm-environment.ts
56 lines (48 loc) · 1.83 KB
/
use-npm-environment.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
import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import type { PackageManifest } from "../read-manifest.js";
import type { NormalizedOptions } from "../normalize-options.js";
export type NpmCliEnvironment = Record<string, string>;
export type NpmCliTask<TReturn> = (
manifest: PackageManifest,
options: NormalizedOptions,
environment: NpmCliEnvironment
) => Promise<TReturn>;
/**
* Create a temporary .npmrc file with the given auth token, and call a task
* with env vars set to use that .npmrc.
*
* @param manifest Pacakge metadata.
* @param options Configuration options.
* @param task A function called with the configured environment. After the
* function resolves, the temporary .npmrc file will be removed.
* @returns The resolved value of `task`
*/
export async function useNpmEnvironment<TReturn>(
manifest: PackageManifest,
options: NormalizedOptions,
task: NpmCliTask<TReturn>
): Promise<TReturn> {
const { registry, token, logger, temporaryDirectory } = options;
const { host, origin, pathname } = registry;
const pathnameWithSlash = pathname.endsWith("/") ? pathname : `${pathname}/`;
const config = [
"; created by jsdevtools/npm-publish",
`//${host}${pathnameWithSlash}:_authToken=\${NODE_AUTH_TOKEN}`,
`registry=${origin}${pathnameWithSlash}`,
"",
].join(os.EOL);
const npmrcDirectory = await fs.mkdtemp(
path.join(temporaryDirectory, "npm-publish-")
);
const npmrc = path.join(npmrcDirectory, ".npmrc");
const environment = { NODE_AUTH_TOKEN: token, npm_config_userconfig: npmrc };
await fs.writeFile(npmrc, config, "utf8");
logger?.debug?.(`Temporary .npmrc created at ${npmrc}\n${config}`);
try {
return await task(manifest, options, environment);
} finally {
await fs.rm(npmrcDirectory, { force: true, recursive: true });
}
}