File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const os = require('os');
6
6
const processImage_1 = require ( './utils/processImage' ) ;
7
7
const processPath_1 = require ( './utils/processPath' ) ;
8
8
async function main ( ) {
9
- console . time ( 'Done in' ) ;
9
+ // console.time('Done in');
10
10
// Parse command line arguments
11
11
const options = await yargs ( process . argv . slice ( 2 ) )
12
12
. option ( 'f' , {
@@ -272,6 +272,6 @@ async function main() {
272
272
'Error: Requires either `filename` or `folderPath`. Run `px --help` for help.' ,
273
273
) ;
274
274
}
275
- console . timeEnd ( 'Done in' ) ;
275
+ // console.timeEnd('Done in');
276
276
}
277
277
main ( ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { processImage } from './utils/processImage';
7
7
import { processPath } from './utils/processPath' ;
8
8
9
9
async function main ( ) {
10
- console . time ( 'Done in' ) ;
10
+ // console.time('Done in');
11
11
12
12
// Parse command line arguments
13
13
const options = ( await yargs ( process . argv . slice ( 2 ) )
@@ -276,7 +276,7 @@ async function main() {
276
276
'Error: Requires either `filename` or `folderPath`. Run `px --help` for help.' ,
277
277
) ;
278
278
}
279
- console . timeEnd ( 'Done in' ) ;
279
+ // console.timeEnd('Done in');
280
280
}
281
281
282
282
main ( ) ;
You can’t perform that action at this time.
0 commit comments