chore: Set version of pnpm - #70
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds an .tool-versions file to enable asdf tool version manager support for pinning the pnpm version used in the project. The version specified (10.19.0) matches the existing packageManager field in package.json, ensuring consistency across different development environment management tools.
Key Changes:
- Added
.tool-versionsfile specifying pnpm version 10.19.0
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Hi there! You can easily add echo '**/loro-prosemirror/.tool-versions' > ~/.gitignore_global
git config --global core.excludesFiles ~/.gitignore_globalAfter that, if you clone github.com/loro-dev/loro-prosemirror into a directory named |
|
Thx for the clarification. I wanted to know whether you would like to make changes in the repo. I'll update my .git/info/exclude then. |
I personally use asdf to manage the versions of tools in my projects. With the
.tool-versionsit is possible to pin the version ofpnpmwith asdf. I have used the version mentioned inloro-prosemirror/package.json
Line 5 in b2bcee5
An alternative would be to add
.tool-versionsin.gitignorewhich I would also be happy about.