Update npx packages referenced in markdown files (#425)

* use correct npx package names in md files

* fix: update remaining non-existent npm package references

- Replace react-codemod with jscodeshift in deps-upgrade.md
- Remove non-existent changelog-parser reference

---------

Co-authored-by: Seth Hobson <wshobson@gmail.com>
This commit is contained in:
Song Luar
2026-02-02 10:04:21 +08:00
committed by GitHub
parent 3ed95e608a
commit 194a267494
3 changed files with 26 additions and 27 deletions

View File

@@ -660,8 +660,8 @@ framework_upgrades = {
'react': {
'upgrade_command': 'npm install react@{version} react-dom@{version}',
'codemods': [
'npx react-codemod rename-unsafe-lifecycles',
'npx react-codemod error-boundaries'
'npx jscodeshift -t https://raw.githubusercontent.com/reactjs/react-codemod/master/transforms/rename-unsafe-lifecycles.js src/',
'npx jscodeshift -t https://raw.githubusercontent.com/reactjs/react-codemod/master/transforms/error-boundaries.js src/'
],
'verification': [
'npm run build',
@@ -671,7 +671,7 @@ framework_upgrades = {
},
'vue': {
'upgrade_command': 'npm install vue@{version}',
'migration_tool': 'npx @vue/migration-tool',
'migration_tool': 'npx vue-codemod -t <transform> <path>',
'breaking_changes': {
'2_to_3': [
'Composition API',