Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/clinic.corals.io/node_modules/webpack-cli/lib/utils/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/clinic.corals.io/node_modules/webpack-cli/lib/utils/prompt-installation.js
const utils = require("./index");
const prompt = require("./prompt");

/**
 *
 * @param packageName
 * @param preMessage Message to show before the question
 */
async function promptInstallation(packageName, preMessage) {
    const packageManager = utils.getPackageManager();

    if (!packageManager) {
        utils.logger.error("Can't find package manager");
        process.exit(2);
    }

    if (preMessage) {
        preMessage();
    }

    // yarn uses 'add' command, rest npm and pnpm both use 'install'
    const commandToBeRun = `${packageManager} ${[
        packageManager === "yarn" ? "add" : "install",
        "-D",
        packageName,
    ].join(" ")}`;
    const { colors } = utils;

    let installConfirm;

    try {
        installConfirm = await prompt({
            message: `[webpack-cli] Would you like to install '${colors.green(
                packageName,
            )}' package? (That will run '${colors.green(commandToBeRun)}') (${colors.yellow(
                "Y/n",
            )})`,
            defaultResponse: "Y",
            stream: process.stderr,
        });
    } catch (error) {
        utils.logger.error(error);
        process.exit(2);
    }

    if (installConfirm) {
        try {
            await utils.runCommand(commandToBeRun);
        } catch (error) {
            utils.logger.error(error);
            process.exit(2);
        }

        return packageName;
    }

    process.exit(2);
}

module.exports = promptInstallation;

Spamworldpro Mini