We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51fcde7 commit 24811faCopy full SHA for 24811fa
src/lib/lockfile/helpers/load-npm-config.ts
@@ -2,14 +2,14 @@ import Config from "@npmcli/config";
2
import defaults from "@npmcli/config/lib/definitions/index.js";
3
4
export async function loadNpmConfig({ npmPath }: { npmPath: string }) {
5
- const conf = new Config({
+ const config = new Config({
6
npmPath,
7
definitions: defaults.definitions,
8
shorthands: defaults.shorthands,
9
flatten: defaults.flatten,
10
});
11
12
- await conf.load();
+ await config.load();
13
14
- return conf;
+ return config;
15
}
0 commit comments