File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 2.0.3.1] - 2020-05-04
8
+
9
+ ### Fixed
10
+ - Fixed bug with Serverless not excluding dev-dependencies and failing to deploy due to large file size
11
+ - Fixed bug with Sharp binaries (Thanks @bs-thomas ) (#63 )
12
+
7
13
## [ 2.0.3] - 2020-05-04
8
14
9
15
### Added
Original file line number Diff line number Diff line change 10
10
"test" : " jest" ,
11
11
"docs" : " serve ./docs"
12
12
},
13
- "version" : " 2.0.3" ,
13
+ "version" : " 2.0.3.1 " ,
14
14
"private" : false ,
15
15
"license" : " MIT" ,
16
16
"dependencies" : {},
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ layers:
25
25
retain : false
26
26
27
27
resources :
28
- Conditions :
28
+ Conditions :
29
29
CreateCertificate : !Not [!Equals ["${self:custom.settings.environment.CUSTOM_DOMAIN, ''}", ""]]
30
30
Resources :
31
31
CloudFrontDistribution :
@@ -75,6 +75,16 @@ resources:
75
75
ValidationMethod : DNS
76
76
functions :
77
77
index :
78
+ package :
79
+ individually : true
80
+ excludeDevDependencies : true
81
+ browser : false
82
+ exclude :
83
+ - node_modules/**
84
+ - docs/**
85
+ - .idea/**
86
+ - bin/darwin/**
87
+ - coverage/**
78
88
handler : src/index.handler
79
89
layers :
80
90
- {Ref: SharpLambdaLayer}
You can’t perform that action at this time.
0 commit comments