Following migration from 3.2.5 to 3.3.0, received the following error when attempting to run strapi using npm run develop
strapi develop error Bootstrap function in plugin "documentation" failed error TypeError: strapi.admin.services.permission.actionProvider.registerMany is not a function
The following seemed to eventually work:
- Update
package.json
changing3.2.5
to3.3.0
- Removing
package-lock.json
andnode_modules/
withrm -rf package-lock.json node_modules/
- Running
npm run build -- --clean
- Running
npm run develop
Thanks for your help,
Michael