1.0.1 • Published 11 months ago

serverless-plugin-tree-prune v1.0.1

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
11 months ago

serverless-plugin-tree-prune

Based on serverless-plugin-tree-shake

Shake the file dependency tree and only include files needed.

install

yarn add --dev serverless-plugin-tree-prune
npm install --save-dev serverless-plugin-tree-prune

usage

plugins:
  - serverless-plugin-tree-prune
package:
  excludeDevDependencies: false

This plugins supports typescript natively. It uses the installed typescript package, reads the appropriate config, and transpiles to js according to that config. You can see examples on the __fixtures__ that start with ts-.

individually

This plugins supports bundling functions individually. Just use that option accordingly:

package:
  individually: true
  excludeDevDependencies: false