Skip to content

Commit

Permalink
fix: formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler committed Oct 21, 2024
1 parent aa282fe commit ffae929
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/create-waku/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,11 @@ Options:
}

async function notifyUpdate() {
const packageJson = JSON.parse(readFileSync('../package.json', {
encoding: 'utf8',
}));
const packageJson = JSON.parse(
readFileSync('../package.json', {
encoding: 'utf8',
}),
);
const result = await checkForUpdate(packageJson).catch(() => {});
if (result?.latest) {
console.log(`A new version of 'create-waku' is available!`);
Expand Down

0 comments on commit ffae929

Please sign in to comment.