Skip to content

Commit

Permalink
v0.27.0
Browse files Browse the repository at this point in the history
try with linting checks passing
  • Loading branch information
nmanu1 committed Oct 30, 2023
1 parent b475e19 commit 14b3afe
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions bump-versions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ function bumpStudio() {
const packageJson = readJson(packageJsonPath);
packageJson.dependencies["@yext/studio-plugin"] = newVersion;
packageJson.dependencies["@yext/studio-ui"] = newVersion;
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + "\n");
fs.writeFileSync(
packageJsonPath,
JSON.stringify(packageJson, null, 2) + "\n"
);
bumpPackage("studio");
execSync("npm i");
}
Expand All @@ -28,15 +31,15 @@ function main() {
try {
bumpPackage("studio-plugin");
} catch (e) {
console.error(e)
console.error(e);
}

try {
bumpPackage("studio-ui");
} catch (e) {
console.error(e)
console.error(e);
}

bumpStudio();
}

Expand Down

0 comments on commit 14b3afe

Please sign in to comment.