-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
124 lines (107 loc) · 2.68 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/**
*
* Package: which-pkgmgr
* Author: Ganesh B
* Description:
* Install: npm i which-pkgmgr --save
* Github: https://github.com/ganeshkbhat/which-pkgmgr/
* npmjs Link: https://www.npmjs.com/package/which-pkgmgr/
* File: index.js
* File Description:
*
*
*/
/* eslint no-console: 0 */
'use strict';
// https://www.npmjs.com/package/detect-package-manager?activeTab=code
// https://github.com/egoist/detect-package-manager/blob/main/src/index.ts
import { promises as fs } from "fs";
import { resolve } from "path";
import execa from "execa";
export type PM = "npm" | "yarn" | "pnpm" | "bun";
/**
* Check if a path exists
*/
async function pathExists(p: string) {
try {
await fs.access(p);
return true;
} catch {
return false;
}
}
const cache = new Map();
/**
* Check if a global pm is available
*/
function hasGlobalInstallation(pm: PM): Promise<boolean> {
const key = `has_global_${pm}`;
if (cache.has(key)) {
return Promise.resolve(cache.get(key));
}
return execa(pm, ["--version"])
.then((res) => {
return /^\d+.\d+.\d+$/.test(res.stdout);
})
.then((value) => {
cache.set(key, value);
return value;
})
.catch(() => false);
}
function getTypeofLockFile(cwd = "."): Promise<PM | null> {
const key = `lockfile_${cwd}`;
if (cache.has(key)) {
return Promise.resolve(cache.get(key));
}
return Promise.all([
pathExists(resolve(cwd, "yarn.lock")),
pathExists(resolve(cwd, "package-lock.json")),
pathExists(resolve(cwd, "pnpm-lock.yaml")),
pathExists(resolve(cwd, "bun.lockb")),
]).then(([isYarn, isNpm, isPnpm, isBun]) => {
let value: PM | null = null;
if (isYarn) {
value = "yarn";
} else if (isPnpm) {
value = "pnpm";
} else if (isBun) {
value = "bun";
} else if (isNpm) {
value = "npm";
}
cache.set(key, value);
return value;
});
}
const detect = async ({
cwd,
includeGlobalBun,
}: { cwd?: string; includeGlobalBun?: boolean } = {}) => {
const type = await getTypeofLockFile(cwd);
if (type) {
return type;
}
const [hasYarn, hasPnpm, hasBun] = await Promise.all([
hasGlobalInstallation("yarn"),
hasGlobalInstallation("pnpm"),
includeGlobalBun && hasGlobalInstallation("bun"),
]);
if (hasYarn) {
return "yarn";
}
if (hasPnpm) {
return "pnpm";
}
if (hasBun) {
return "bun";
}
return "npm";
};
export { detect };
export function getNpmVersion(pm: PM) {
return execa(pm || "npm", ["--version"]).then((res) => res.stdout);
}
export function clearCache() {
return cache.clear();
}