PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/@lerna/info
Просмотр файла: index.js
"use strict";
const { Command } = require("@lerna/command");
const { output } = require("@lerna/output");
const envinfo = require("envinfo");
module.exports = factory;
function factory(argv) {
return new InfoCommand(argv);
}
class InfoCommand extends Command {
// eslint-disable-next-line
initialize() {}
// eslint-disable-next-line
execute() {
output("\n Environment info:");
envinfo
.run({
System: ["OS", "CPU"],
Binaries: ["Node", "Yarn", "npm"],
Utilities: ["Git"],
npmPackages: ["lerna"],
})
.then(output);
}
}
module.exports.InfoCommand = InfoCommand;
Выполнить команду
Для локальной разработки. Не используйте в интернете!