project-repl
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -48,4 +48,4 @@ let fs = require('fs'); | ||
* dontPopulateGlobalWithMain - If true, won't take the objects exported by the main file and put them into `into` | ||
* modulesThreshold - Threshold in ms for when to show times for module requires, default 0 | ||
* filesThreshold - Threshold in ms for when to show times for file requires, default 10 | ||
* modulesThreshold - Threshold in ms for when to show times for module requires, default 4 | ||
* filesThreshold - Threshold in ms for when to show times for file requires, default 4 | ||
* threshold - Default value for module and files thresholds | ||
@@ -289,5 +289,5 @@ * | ||
console.log( | ||
this._dispForTimes(modules, this._opts.modulesThreshold || this._opts.threshold || 0) | ||
this._dispForTimes(modules, this._opts.modulesThreshold || this._opts.threshold || 4) | ||
); | ||
console.log(this._dispForTimes(files, this._opts.filesThreshold || this._opts.threshold || 10)); | ||
console.log(this._dispForTimes(files, this._opts.filesThreshold || this._opts.threshold || 4)); | ||
if (results.mainExports.length > 0) { | ||
@@ -294,0 +294,0 @@ console.log(results.mainExports.join(' ')); |
{ | ||
"name": "project-repl", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/expo/project-repl.git", |
11999