r2g icon indicating copy to clipboard operation
r2g copied to clipboard

r2g output should be uniform

Open ORESoftware opened this issue 4 years ago • 0 comments

To make it pretty, go from this:

r2g: Re-creating folders "$HOME/.r2g/temp"...
r2g: Copying your user defined tests to: "/Users/alex/.r2g/temp/project" ...
r2g: Running the following command from your project copy root: npm pack --loglevel=warn;
r2g: Running the following command via this dir: "/Users/alex/.r2g/temp/project" ...
r2g: npm install --loglevel=warn --cache-min 9999999 --no-optional --production "/Users/alex/.r2g/temp/copy/linked-queue/oresoftware-linked-queue-0.1.104.tgz";
r2g:            npm i --loglevel=warn --cache-min 9999999 --no-optional --production;
r2g: Running "npm install --cache-min 9999999 --loglevel=warn" in project copy.
r2g: No custom actions registered. Use custom.actions.js to add custom actions.

to this:

r2g: Re-creating folders "$HOME/.r2g/temp"...
r2g: Copying your user defined tests to: "/Users/alex/.r2g/temp/project" ...
r2g: Running the following command from your project copy root: npm pack --loglevel=warn;
r2g: Running the following command via this dir: "/Users/alex/.r2g/temp/project" ...
r2g: npm install --loglevel=warn --cache-min 9999999 --no-optional --production "/Users/alex/.r2g/temp/copy/linked-queue/oresoftware-linked-queue-0.1.104.tgz";
r2g: npm i --loglevel=warn --cache-min 9999999 --no-optional --production;
r2g: Running "npm install --cache-min 9999999 --loglevel=warn" in project copy.
r2g: No custom actions registered. Use custom.actions.js to add custom actions.

ORESoftware avatar Jul 26 '19 23:07 ORESoftware