Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jan 13, 2024
1 parent 26a17eb commit ecaff50
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 90 deletions.
169 changes: 82 additions & 87 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions scripts/generateReleaseNotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dprint config add biome
## JS Formatting API
* [JS Formatter](https://github.com/dprint/js-formatter) - Browser/Deno and Node
* [npm package](https://www.npmjs.com/package/@dprint/biome)
* [JS Formatter](https://github.com/dprint/js-formatter) - Browser/Deno and Node
* [npm package](https://www.npmjs.com/package/@dprint/biome)
`;

console.log(text);
3 changes: 2 additions & 1 deletion scripts/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ if (Deno.args.includes("--skip-publish")) {

$.logStep(`Committing Biome version bump commit...`);
await $`git add .`;
const message = `${isPatchBump ? "fix" : "feat"}: update to biome ${latestTag.tag}`;
const message = `${isPatchBump ? "fix" : "feat"}: update to Biome ${latestTag.tag}`;
await $`git commit -m ${message}`;

$.logStep("Bumping version in Cargo.toml...");
cargoToml.bumpCargoTomlVersion(isPatchBump ? "patch" : "minor");

// release
const newVersion = cargoToml.version();
$.logStep(`Committing and publishing ${newVersion}...`);
Expand Down

0 comments on commit ecaff50

Please sign in to comment.