Serverless Framework plugin that moves a bootstrap file to the root directory for provided.al2 runtime
npm install serverless-plugin-move-bootstrap

serverless-plugin-move-bootstrap is a small Serverless Framework plugin that helps in rearranging a deployment package
for the provided.al2 runtime by placing the "bootstrap" executable in the root directory. Once the plugin is installed
it will search for the "handler" file and move it to the root directory of the package.
1. Install the plugin
```
npm i --save-dev serverless-plugin-move-bootstrap
1. Add it to your serverless.yaml
``
plugins:
- serverless-plugin-move-bootstrap
Default values:
``
custom:
bootstrap:
tmpDir: .serverless/tmp # folder to use for extracting, moving and rezipping files
The plugin goes over all the functions defined, unzips their packaging and moves the "handler" to a root-level '
bootstrap' file. It then re-zips the package and cleans up the temp directory, ahead of deployment.
The provided.al2` runtime requires the "bootstrap" file to be in the root directory of the package. This plugin helps
in achieving that.