Skip to content

Commit

Permalink
chore: remove stray console logs and v bump
Browse files Browse the repository at this point in the history
  • Loading branch information
nickreese committed Mar 7, 2022
1 parent 4ab2af1 commit ea1cdeb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elderjs/elderjs",
"version": "1.6.10",
"version": "1.6.11",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"engineStrict": true,
Expand Down
2 changes: 0 additions & 2 deletions src/utils/perf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const perf = (page: Page | Elder, force = false) => {
* @param {String} label
*/
start: (label: string) => {
console.log(`${label}-start-${page.uid}`);
performance.mark(`${label}-start-${page.uid}`);
},
/**
Expand Down Expand Up @@ -65,7 +64,6 @@ const perf = (page: Page | Elder, force = false) => {

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

0 comments on commit ea1cdeb

Please sign in to comment.