Skip to content

Commit

Permalink
fix updateVersion script
Browse files Browse the repository at this point in the history
  • Loading branch information
bigabig committed Sep 19, 2024
1 parent bcc1895 commit bd7e013
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/bin/updateVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ const packageLockJson = JSON.parse(readFileSync("package-lock.json"));
packageLockJson.version = version;
writeFileSync("package-lock.json", JSON.stringify(packageLockJson));

execSync(`npx prettier --write package.json`);
execSync(`npx prettier package.json --write`);
execSync(`npx prettier package-lock.json --write`);

0 comments on commit bd7e013

Please sign in to comment.