serverless-plugin-include-dependencies
serverless-plugin-include-dependencies copied to clipboard
This is my yml file: ``` service: covation-labs-api provider: name: aws runtime: nodejs10.x stage: v1 region: eu-central-1 memorySize: 128 package: excludeDevDependencies: false individually: true include: - dist/** - package.json plugins:...
There is an issue while deploy. I am using knex with client mysql, but serverless plugin include dependencies are requesting all client module(pg, mssql, sqlite3, mysql2 etc..) one by one....
I propose this PR to fix #98. There is two modification : - include global pattern even when package individually is true. - add an optimisation to not read the...
Hi, I have a serverless.yml where i set some file to remove and to keep: ```yaml package: individually: true excludeDevDependencies: false patterns: - '!./**' - '!node_modules/@aws-sdk/**/dist-es/**' - '!node_modules/@aws-sdk/**/dist-types/**' - '!node_modules/@smithy/**/dist-es/**'...
As we are using a monorepo setup and some of our packages are containing binaries which we needed to exclude, we found out that the current exclusions package filtering is...
Fix for https://github.com/dougmoscrop/serverless-plugin-include-dependencies/issues/100 edit: I made this PR and the (hidden) emails associated with my github account got signed up for a serverless email marketing list? wtf is this bullshit?...
I'm trying to deploy multiple functions, one of which needs to be deployed with an `image` attribute rather than a `handler` filepath. I'm getting this error for that function: `TypeError:...