Skip to content

Commit

Permalink
change package.exclude to package.patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
noogen committed May 4, 2022
1 parent 98509b8 commit 1d3ff64
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ provider:
environment: ${file(env.yml):${self:provider.stage}}

package:
exclude:
- node_modules/**
- tests/**
- .babelrc
- .d*
- .e*
- .g*
- .git/**
- .DS_*
- docker*.yml
- run-*.sh
patterns:
- '!node_modules/**'
- '!tests/**'
- '!.babelrc'
- '!.d*'
- '!.e*'
- '!.g*'
- '!.git/**'
- '!.DS_*'
- '!docker*.yml'
- '!run-*.sh'

functions:
storeHandler:
Expand Down

0 comments on commit 1d3ff64

Please sign in to comment.