Skip to content

Commit

Permalink
v0.27.0
Browse files Browse the repository at this point in the history
Add newline to studio/package.json in script
  • Loading branch information
nmanu1 committed Oct 30, 2023
1 parent 39e71da commit bb611c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bump-versions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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));
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + "\n");
bumpPackage("studio");
execSync("npm i");
}
Expand Down

0 comments on commit bb611c2

Please sign in to comment.