Skip to content

Commit ea1cdeb

Browse files
committed
chore: remove stray console logs and v bump
1 parent 4ab2af1 commit ea1cdeb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elderjs/elderjs",
3-
"version": "1.6.10",
3+
"version": "1.6.11",
44
"main": "./build/index.js",
55
"types": "./build/index.d.ts",
66
"engineStrict": true,

src/utils/perf.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const perf = (page: Page | Elder, force = false) => {
3333
* @param {String} label
3434
*/
3535
start: (label: string) => {
36-
console.log(`${label}-start-${page.uid}`);
3736
performance.mark(`${label}-start-${page.uid}`);
3837
},
3938
/**
@@ -65,7 +64,6 @@ const perf = (page: Page | Elder, force = false) => {
6564

6665
// eslint-disable-next-line no-param-reassign
6766
page.perf.prefix = (pre) => {
68-
console.log('prefix', pre);
6967
return { start: (name) => page.perf.start(`${pre}.${name}`), end: (name) => page.perf.end(`${pre}.${name}`) };
7068
};
7169
};

0 commit comments

Comments
 (0)