Skip to content

Commit bf90c99

Browse files
committed
Remove time report for now
1 parent 928117f commit bf90c99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

px.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const os = require('os');
66
const processImage_1 = require('./utils/processImage');
77
const processPath_1 = require('./utils/processPath');
88
async function main() {
9-
console.time('Done in');
9+
// console.time('Done in');
1010
// Parse command line arguments
1111
const options = await yargs(process.argv.slice(2))
1212
.option('f', {
@@ -272,6 +272,6 @@ async function main() {
272272
'Error: Requires either `filename` or `folderPath`. Run `px --help` for help.',
273273
);
274274
}
275-
console.timeEnd('Done in');
275+
// console.timeEnd('Done in');
276276
}
277277
main();

src/px.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { processImage } from './utils/processImage';
77
import { processPath } from './utils/processPath';
88

99
async function main() {
10-
console.time('Done in');
10+
// console.time('Done in');
1111

1212
// Parse command line arguments
1313
const options = (await yargs(process.argv.slice(2))
@@ -276,7 +276,7 @@ async function main() {
276276
'Error: Requires either `filename` or `folderPath`. Run `px --help` for help.',
277277
);
278278
}
279-
console.timeEnd('Done in');
279+
// console.timeEnd('Done in');
280280
}
281281

282282
main();

0 commit comments

Comments
 (0)