-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(lint-pr-title): use text lockfile, specify bun version in separ…
…ate file (#702) Renovate isn't currently updating the Bun version we're using for this workflow. That's because we give it in `packageManagers` but it's [not a supported Corepack package manager][package-managers]. [It does, however, support updating a `.bun-version` file.][renovate-bun-version] We can switch to putting our version in that and enable the manager. We've given `1.1.43` as the version even though `1.1.44` is the newest right now, so we can see if the update is raised properly. In `1.1.39` a [new, faster, diffable, text-based lockfile format was introduced][lockfile-format]. We can switch to that too. [lockfile-format]: https://bun.sh/blog/bun-lock-text-lockfile#cached-bun-install-gets-30-faster [package-managers]: https://nodejs.org/api/corepack.html#supported-package-managers [renovate-bun-version]: https://docs.renovatebot.com/modules/manager/bun-version/
- Loading branch information
Showing
7 changed files
with
607 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.1.43 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,5 @@ | |
"prettier": "3.4.2", | ||
"typescript": "5.7.3", | ||
"typescript-eslint": "8.21.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |