File tree 2 files changed +9
-4
lines changed
packages/mongodb-memory-server-core
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 80
80
"mongodb" : " ^3.5.9"
81
81
},
82
82
"scripts" : {
83
- "cleanup " : " rimraf tmp lib coverage node_modules/.cache" ,
83
+ "clean " : " rimraf tmp lib coverage node_modules/.cache" ,
84
84
"build" : " npm-run-all build:*" ,
85
85
"build:ts" : " rimraf ./lib && tsc -p ./tsconfig.build.json" ,
86
86
"watch" : " cross-env MONGOMS_DOWNLOAD_DIR=./tmp jest --watchAll" ,
Original file line number Diff line number Diff line change @@ -315,6 +315,7 @@ export default class MongoBinaryDownload {
315
315
return new Promise ( ( resolve , reject ) => {
316
316
const fileStream = fs . createWriteStream ( tempDownloadLocation ) ;
317
317
318
+ log ( `trying to download https://${ httpOptions . hostname } ${ httpOptions . path } ` ) ;
318
319
https
319
320
. get ( httpOptions as any , ( response ) => {
320
321
// "as any" because otherwise the "agent" wouldnt match
@@ -391,9 +392,13 @@ export default class MongoBinaryDownload {
391
392
const mbComplete = Math . round ( ( this . dlProgress . current / 1048576 ) * 10 ) / 10 ;
392
393
393
394
const crReturn = this . platform === 'win32' ? '\x1b[0G' : '\r' ;
394
- process . stdout . write (
395
- `Downloading MongoDB ${ this . version } : ${ percentComplete } % (${ mbComplete } mb / ${ this . dlProgress . totalMb } mb)${ crReturn } `
396
- ) ;
395
+ const message = `Downloading MongoDB ${ this . version } : ${ percentComplete } % (${ mbComplete } mb / ${ this . dlProgress . totalMb } mb)${ crReturn } ` ;
396
+ if ( process . stdout . isTTY ) {
397
+ // if TTY overwrite last line over and over until finished
398
+ process . stdout . write ( message ) ;
399
+ } else {
400
+ console . log ( message ) ;
401
+ }
397
402
}
398
403
399
404
/**
You can’t perform that action at this time.
0 commit comments