Skip to content

Commit

Permalink
fix version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kuraysdev committed Jun 2, 2024
1 parent 77848ce commit b92e828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion version-bump.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const targetVersion = process.env.version;

let file = JSON.parse(readFileSync("package.json", "utf8"));
file.version = targetVersion;
writeFileSync("package.json", JSON.stringify(manifest, null, "\t"));
writeFileSync("package.json", JSON.stringify(file, null, "\t"));

// read minAppVersion from manifest.json and bump version to target version
let manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
Expand Down

0 comments on commit b92e828

Please sign in to comment.