Remove s3 bucket created by serverless-finch

Hi,
I recently used serverless-finch plugin to create s3 bucket, upload files and configure it as website.

I deployed it using: serverless client deploy.
How can I remove it using serverless cli?
(since ‘serverless client deploy’ do not creates a cloudformation stack to do the deployment, ‘serverless remove’ does not work here)

the serverless.yml file:

service: try-creating-s3

provider:
name: aws
runtime: python2.7

plugins:

  • serverless-finch

custom:
client:
bucketName: my-bucket-name-bla

I’ve just submitted a PR that adds this functionality to serverless-finch, feel free to leave your comments as its nice to have a second use case to think about! https://github.com/fernando-mc/serverless-finch/pull/10