v.12.22.7 / 6.14.15 both locally and remotely but I suppose the problem is that Heroku will never launch npm install on a custom plugin that is not added to the main package.json as dependency…
Yes but instead of placing it in plugins you need to create a custom folder like packages and reference the package in your core package.json like "your-custom-package": "file:packages/your-custom-package"
Given anytime you change it locally you have to rerun an npm install or yarn install so it’s not ideal.
Yes but instead of placing it in plugins you need to create a custom folder like packages and reference the package in your core package.json like "your-custom-package": "file:packages/your-custom-package"
I think this can be an acceptable solution, thanks!