Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR migrates the project's package manager from Yarn to npm. The migration was performed by converting yarn.lock to package-lock.json using the synp tool, reinstalling dependencies with npm, and running npm audit fix to address vulnerabilities.
Key Changes:
- Updated documentation to reflect npm commands instead of Yarn
- Modified CI workflow to use npm for dependency installation and script execution
- Updated dependency cache key to reference
package-lock.jsoninstead ofyarn.lock
Reviewed Changes
Copilot reviewed 2 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| README.md | Updated installation command from yarn to npm install |
| .github/workflows/build.yml | Replaced all Yarn commands with npm equivalents and updated cache key |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
niryuu
approved these changes
Oct 29, 2025
Contributor
niryuu
left a comment
There was a problem hiding this comment.
- Source code seems sound
- It installed dependencies
- test passed
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
以下の切り替え手順により、yarnからnpmへの切り替えを行いましたので、お手すきの際に確認をお願いします。
切り替え手順メモ
PR #429 より抜粋
M1 MacBook Pro (arm64), Node v22環境を使用し、以下の手順で切り替えを行っています。
yarn.lockからpackage-lock.jsonに変換node_modulesフォルダを削除し、npm iを実行してインストールnpm audix fixを実行して脆弱性のある依存パッケージを更新確認項目
registry.yarnpkg.com=>registry.npmjs.org切り替え後の動作確認Closes #428