Merge pull request #3367 from strapi/doc/migration-beta

Update migration guide steps
This commit is contained in:
Alexandre BODIN 2019-06-04 10:02:15 +02:00 committed by GitHub
commit 3896b87288
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,10 @@ First, let's clean your project's dependencies and update its `package.json` fil
### Clean your `node_modules`
Start by deleting the `package-lock.json` or `yarn.lock` file. Then remove all your current `node_modules`:
```bash
rm package-lock.json # OR rm yarn.lock
rm -rf node_modules
```