We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have a serverless.yml where i set some file to remove and to keep:
package: individually: true excludeDevDependencies: false patterns: - '!./**' - '!node_modules/@aws-sdk/**/dist-es/**' - '!node_modules/@aws-sdk/**/dist-types/**' - '!node_modules/@smithy/**/dist-es/**' - '!node_modules/@smithy/**/dist-types/**' - ./config/** functions: resources: name: lambda-${self:service}-${self:provider.stage}-resources handler: dist/apps/resources/main.handler events: - http: method: GET path: '/api/resources/cities' package: patterns: - ./dist/apps/resources/**
The file added globally are correctly added, the file excluded in node_module aren't excluded and in the plugin serverless-common-exclude is useless.
If i set individually to false, i have only one zip and the exclusion works (but then lambda is too big)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hi,
I have a serverless.yml where i set some file to remove and to keep:
The file added globally are correctly added, the file excluded in node_module aren't excluded and in the plugin serverless-common-exclude is useless.
If i set individually to false, i have only one zip and the exclusion works (but then lambda is too big)
The text was updated successfully, but these errors were encountered: