Skip to content

Commit

Permalink
No need to update package json files
Browse files Browse the repository at this point in the history
  • Loading branch information
baptistecdr committed Dec 27, 2024
1 parent 04fc673 commit c85b4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let version = process.argv[2].trim();
if (version.startsWith("v")) {
version = version.substring(1);
}
const filesToUpdate = ["package.json", "public/manifest.json", "package-lock.json"];
const filesToUpdate = ["public/manifest.json"];

for (const file of filesToUpdate) {
fs.readFile(file, "utf8", (err, data) => {
Expand Down

0 comments on commit c85b4af

Please sign in to comment.