Serverless plugin "serverless-client-s3" not found
I've installed serverless-client-s3 as per the readme with npm i --save serverless-client-s3 and listed it under my plugins in serverless.yml. I run sls client deploy and see a message indicating that the plugin has not been found. I'm using Node v6.11.2 and Serverless v1.20.2. Any help would be very much appreciated!
I also had this issue. Had to stick with these versions for it to work:
"serverless": "1.15.2",
"serverless-client-s3": "git+https://github.com/bbandydd/serverless-client-s3.git#42e8c7cf5ee75f0eaa02c08bb8711cda8161b34c",
See https://forum.serverless.com/t/serverless-plugin-not-found-even-though-it-is-installed-and-listed/2487/10
Looks like there was a compatibility issue with pre-1.0 versions of the Framework and 1.0+ versions. That was fixed in a PR, but a new release wasn’t published to NPM because the credentials are lost – see here.
Fortunately, someone forked the project into serverless-finch which has the latest updates. :tada: I would recommend using that instead of serverless-client-s3.