After running nx migrat…

less than 1 minute read

After running nx migrate @nrwl/workspace@latest I got this migrations.json file: { "migrations": [ { "version": "9.5.0-beta.1", "description": "Update libraries", "factory": "./src/migrations/update-9-5-0/update-9-5-0", "package": "@nrwl/react", "name": "update-9.5.0" } ] } When running it nx migrate --run-migrations=migrations.json I get this error: ```nx migrate –run-migrations=migrations.json 2.6m  Mon Jul 6 11:46:47 2020 Running migration @nrwl/react:update-9.5.0 Schematic “update-9.5.0” not found in collection “@nrwl/react”. /Users/fernando/Code/project/node_modules/@nrwl/workspace/node_modules/yargs/yargs.js:1109 else throw err ^

Error: Command failed: ./node_modules/.bin/tao migrate –run-migrations=migrations.json```

Updated: