Skip to content

Commit

Permalink
ci: version script
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronczichon committed Apr 23, 2024
1 parent 50adaff commit 0af78e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions version-bump.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { readFileSync, writeFileSync } from "fs";
const targetVersion = process.env.npm_package_version;

// read minAppVersion from manifest.json and bump version to target version
let packageJson = JSON.parse(readFileSync("manifest.json", "utf8"));
const { minAppVersion } = packageJson;
packageJson.version = targetVersion;
writeFileSync("manifest.json", JSON.stringify(packageJson, null, "\t"));
let manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
const { minAppVersion } = manifest;
manifest.version = targetVersion;
writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t"));

// update versions.json with target version and minAppVersion from manifest.json
let versions = JSON.parse(readFileSync("versions.json", "utf8"));
Expand Down

0 comments on commit 0af78e2

Please sign in to comment.