package-manager-detector
Version:
Package manager detector
172 lines (170 loc) • 5.46 kB
JavaScript
function splitRunArgs(args, valueFlags = []) {
for (let i = 0; i < args.length; i++) {
if (args[i].startsWith("-"))
continue;
if (i > 0 && valueFlags.includes(args[i - 1]))
continue;
return { before: args.slice(0, i), script: args[i], after: args.slice(i + 1) };
}
return { before: args, script: void 0, after: [] };
}
function dashDashArg(agent, agentCommand, valueFlags = []) {
return (args) => {
const { before, script, after } = splitRunArgs(args, valueFlags);
if (script === void 0)
return [agent, agentCommand, ...before];
if (after.length > 0)
return [agent, agentCommand, ...before, script, "--", ...after];
return [agent, agentCommand, ...before, script];
};
}
const npm = {
"agent": ["npm", 0],
"run": dashDashArg("npm", "run", ["-w", "--workspace"]),
"install": ["npm", "i", 0],
"frozen": ["npm", "ci", 0],
"global": ["npm", "i", "-g", 0],
"add": ["npm", "i", 0],
"upgrade": ["npm", "update", 0],
"upgrade-interactive": null,
"dedupe": ["npm", "dedupe", 0],
"execute": ["npx", 0],
"execute-local": ["npx", 0],
"uninstall": ["npm", "uninstall", 0],
"global_uninstall": ["npm", "uninstall", "-g", 0]
};
const yarn = {
"agent": ["yarn", 0],
"run": ["yarn", "run", 0],
"install": ["yarn", "install", 0],
"frozen": ["yarn", "install", "--frozen-lockfile", 0],
"global": ["yarn", "global", "add", 0],
"add": ["yarn", "add", 0],
"upgrade": ["yarn", "upgrade", 0],
"upgrade-interactive": ["yarn", "upgrade-interactive", 0],
"dedupe": null,
"execute": ["npx", 0],
"execute-local": dashDashArg("yarn", "exec"),
"uninstall": ["yarn", "remove", 0],
"global_uninstall": ["yarn", "global", "remove", 0]
};
const yarnBerry = {
...yarn,
"frozen": ["yarn", "install", "--immutable", 0],
"upgrade": ["yarn", "up", 0],
"upgrade-interactive": ["yarn", "up", "-i", 0],
"dedupe": ["yarn", "dedupe", 0],
"execute": ["yarn", "dlx", 0],
"execute-local": ["yarn", "exec", 0],
// Yarn 2+ removed 'global', see https://github.com/yarnpkg/berry/issues/821
"global": ["npm", "i", "-g", 0],
"global_uninstall": ["npm", "uninstall", "-g", 0]
};
const pnpm = {
"agent": ["pnpm", 0],
"run": ["pnpm", "run", 0],
"install": ["pnpm", "i", 0],
"frozen": ["pnpm", "i", "--frozen-lockfile", 0],
"global": ["pnpm", "add", "-g", 0],
"add": ["pnpm", "add", 0],
"upgrade": ["pnpm", "update", 0],
"upgrade-interactive": ["pnpm", "update", "-i", 0],
"dedupe": ["pnpm", "dedupe", 0],
"execute": ["pnpm", "dlx", 0],
"execute-local": ["pnpm", "exec", 0],
"uninstall": ["pnpm", "remove", 0],
"global_uninstall": ["pnpm", "remove", "--global", 0]
};
const bun = {
"agent": ["bun", 0],
"run": ["bun", "run", 0],
"install": ["bun", "install", 0],
"frozen": ["bun", "install", "--frozen-lockfile", 0],
"global": ["bun", "add", "-g", 0],
"add": ["bun", "add", 0],
"upgrade": ["bun", "update", 0],
"upgrade-interactive": ["bun", "update", "-i", 0],
"dedupe": null,
"execute": ["bun", "x", 0],
"execute-local": ["bun", "x", 0],
"uninstall": ["bun", "remove", 0],
"global_uninstall": ["bun", "remove", "-g", 0]
};
const aube = {
"agent": ["aube", 0],
"run": ["aube", "run", 0],
"install": ["aube", "install", 0],
"frozen": ["aube", "install", "--frozen-lockfile", 0],
"global": ["aube", "add", "-g", 0],
"add": ["aube", "add", 0],
"upgrade": ["aube", "update", 0],
"upgrade-interactive": ["aube", "update", "-i", 0],
"dedupe": ["aube", "dedupe", 0],
"execute": ["aube", "dlx", 0],
"execute-local": ["aube", "exec", 0],
"uninstall": ["aube", "remove", 0],
"global_uninstall": ["aube", "remove", "-g", 0]
};
const deno = {
"agent": ["deno", 0],
"run": ["deno", "task", 0],
"install": ["deno", "install", 0],
"frozen": ["deno", "install", "--frozen", 0],
"global": ["deno", "install", "-g", 0],
"add": ["deno", "add", 0],
"upgrade": ["deno", "outdated", "--update", 0],
"upgrade-interactive": ["deno", "outdated", "--update", 0],
"dedupe": null,
"execute": ["deno", "x", 0],
"execute-local": ["deno", "task", "--eval", 0],
"uninstall": ["deno", "remove", 0],
"global_uninstall": ["deno", "uninstall", "-g", 0]
};
const nub = {
"agent": ["nub", 0],
"run": ["nub", "run", 0],
"install": ["nub", "install", 0],
"frozen": ["nub", "install", "--frozen-lockfile", 0],
"global": ["nub", "add", "-g", 0],
"add": ["nub", "add", 0],
"upgrade": ["nub", "update", 0],
"upgrade-interactive": ["nub", "update", "-i", 0],
"dedupe": ["nub", "dedupe", 0],
"execute": ["nubx", 0],
"execute-local": ["nub", "exec", 0],
"uninstall": ["nub", "remove", 0],
"global_uninstall": ["nub", "remove", "-g", 0]
};
const COMMANDS = {
"npm": npm,
"yarn": yarn,
"yarn@berry": yarnBerry,
"pnpm": pnpm,
// pnpm v6.x or below
"pnpm@6": {
...pnpm,
run: dashDashArg("pnpm", "run", ["-F", "--filter"])
},
"bun": bun,
"aube": aube,
"deno": deno,
"nub": nub
};
function resolveCommand(agent, command, args) {
const value = COMMANDS[agent][command];
return constructCommand(value, args);
}
function constructCommand(value, args) {
if (value == null)
return null;
const list = typeof value === "function" ? value(args) : value.flatMap((v) => {
if (typeof v === "number")
return args;
return [v];
});
return {
command: list[0],
args: list.slice(1)
};
}
export { COMMANDS, constructCommand, resolveCommand, splitRunArgs };