You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting the verbose flag true for one of my tasks does not print installation logs in the terminal.
Description
I am using pkg-install with listr. One of the tasks is to install all the dependencies as well as print installation logs (like what usually prints when you do npm install). It is installing the dependencies completely fine, but doing it silently without printing anything in the terminal.
import { projectInstall } from 'pkg-install';
....
....
const tasks = new list([
. . . . . .
. . . . . . .
{
title: 'Installing dependencies. It will take few minutes. Please do not cancel the installation.',
task: () => projectInstall({ cwd: newOptions.target, verbose: true })
}
... . . . . .
])
Am I missing something?
The text was updated successfully, but these errors were encountered:
sprakash57
changed the title
Verbose flag not working.
Verbose flag is not working.
Apr 4, 2021
What is happening?
Setting the
verbose
flagtrue
for one of my tasks does not print installation logs in the terminal.Description
I am using
pkg-install
withlistr
. One of the tasks is to install all the dependencies as well as print installation logs (like what usually prints when you donpm install
). It is installing the dependencies completely fine, but doing it silently without printing anything in the terminal.Am I missing something?
The text was updated successfully, but these errors were encountered: