Skip to content

Commit d425fd1

Browse files
committed
changes
1 parent 811fb51 commit d425fd1

File tree

7 files changed

+584
-526
lines changed

7 files changed

+584
-526
lines changed

.projen/deps.json

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
"name": "@types/jest",
99
"type": "build"
1010
},
11+
{
12+
"name": "@types/lambda-log",
13+
"type": "build"
14+
},
1115
{
1216
"name": "@types/node",
1317
"version": "^10.17.0",
@@ -27,7 +31,7 @@
2731
},
2832
{
2933
"name": "aws-cdk",
30-
"version": "1.98.0",
34+
"version": "1.100.0",
3135
"type": "build"
3236
},
3337
{
@@ -83,97 +87,96 @@
8387
},
8488
{
8589
"name": "@aws-cdk/assert",
86-
"version": "1.98.0",
90+
"version": "1.100.0",
8791
"type": "runtime"
8892
},
8993
{
9094
"name": "@aws-cdk/aws-apigatewayv2-integrations",
91-
"version": "1.98.0",
95+
"version": "1.100.0",
9296
"type": "runtime"
9397
},
9498
{
9599
"name": "@aws-cdk/aws-apigatewayv2",
96-
"version": "1.98.0",
100+
"version": "1.100.0",
97101
"type": "runtime"
98102
},
99103
{
100104
"name": "@aws-cdk/aws-appsync",
101-
"version": "1.98.0",
105+
"version": "1.100.0",
102106
"type": "runtime"
103107
},
104108
{
105109
"name": "@aws-cdk/aws-certificatemanager",
106-
"version": "1.98.0",
110+
"version": "1.100.0",
107111
"type": "runtime"
108112
},
109113
{
110114
"name": "@aws-cdk/aws-cloudfront",
111-
"version": "1.98.0",
115+
"version": "1.100.0",
112116
"type": "runtime"
113117
},
114118
{
115119
"name": "@aws-cdk/aws-cloudwatch",
116-
"version": "1.98.0",
120+
"version": "1.100.0",
117121
"type": "runtime"
118122
},
119123
{
120124
"name": "@aws-cdk/aws-cognito",
121-
"version": "1.98.0",
125+
"version": "1.100.0",
122126
"type": "runtime"
123127
},
124128
{
125129
"name": "@aws-cdk/aws-dynamodb",
126-
"version": "1.98.0",
130+
"version": "1.100.0",
127131
"type": "runtime"
128132
},
129133
{
130134
"name": "@aws-cdk/aws-iam",
131-
"version": "1.98.0",
135+
"version": "1.100.0",
132136
"type": "runtime"
133137
},
134138
{
135139
"name": "@aws-cdk/aws-kms",
136-
"version": "1.98.0",
140+
"version": "1.100.0",
137141
"type": "runtime"
138142
},
139143
{
140144
"name": "@aws-cdk/aws-lambda-nodejs",
141-
"version": "1.98.0",
145+
"version": "1.100.0",
142146
"type": "runtime"
143147
},
144148
{
145149
"name": "@aws-cdk/aws-lambda",
146-
"version": "1.98.0",
150+
"version": "1.100.0",
147151
"type": "runtime"
148152
},
149153
{
150154
"name": "@aws-cdk/aws-route53-targets",
151-
"version": "1.98.0",
155+
"version": "1.100.0",
152156
"type": "runtime"
153157
},
154158
{
155159
"name": "@aws-cdk/aws-route53",
156-
"version": "1.98.0",
160+
"version": "1.100.0",
157161
"type": "runtime"
158162
},
159163
{
160164
"name": "@aws-cdk/aws-s3",
161-
"version": "1.98.0",
165+
"version": "1.100.0",
162166
"type": "runtime"
163167
},
164168
{
165169
"name": "@aws-cdk/core",
166-
"version": "1.98.0",
170+
"version": "1.100.0",
167171
"type": "runtime"
168172
},
169173
{
170174
"name": "@aws-cdk/core",
171-
"version": "1.98.0",
175+
"version": "1.100.0",
172176
"type": "runtime"
173177
},
174178
{
175179
"name": "@taimos/lambda-toolbox",
176-
"version": "^0.0.72",
177180
"type": "runtime"
178181
},
179182
{

.projenrc.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@ const { HttpApiAspect } = require('cdk-serverless/lib/projen');
22
const { AwsCdkTypeScriptApp } = require('projen');
33

44
const project = new AwsCdkTypeScriptApp({
5-
cdkVersion: '1.98.0',
5+
cdkVersion: '1.100.0',
66
cdkVersionPinning: true,
77
defaultReleaseBranch: 'main',
88
jsiiFqn: 'projen.AwsCdkTypeScriptApp',
99
name: 'cdk-serverless-demo-http',
1010
deps: [
1111
'cdk-serverless',
1212
],
13+
tsconfig: {
14+
compilerOptions: {
15+
allowSyntheticDefaultImports: true,
16+
},
17+
},
1318
});
1419

1520
new HttpApiAspect(project, {

package.json

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@
2525
"devDependencies": {
2626
"@types/aws-lambda": "^8.10.75",
2727
"@types/jest": "^26.0.22",
28+
"@types/lambda-log": "^2.2.0",
2829
"@types/node": "^10.17.0",
2930
"@types/uuid": "^8.3.0",
3031
"@typescript-eslint/eslint-plugin": "^4.22.0",
3132
"@typescript-eslint/parser": "^4.22.0",
32-
"aws-cdk": "1.98.0",
33+
"aws-cdk": "1.100.0",
3334
"eslint": "^7.24.0",
3435
"eslint-import-resolver-node": "^0.3.4",
3536
"eslint-import-resolver-typescript": "^2.4.0",
@@ -44,25 +45,25 @@
4445
"typescript": "^4.2.4"
4546
},
4647
"dependencies": {
47-
"@aws-cdk/assert": "1.98.0",
48-
"@aws-cdk/aws-apigatewayv2": "1.98.0",
49-
"@aws-cdk/aws-apigatewayv2-integrations": "1.98.0",
50-
"@aws-cdk/aws-appsync": "1.98.0",
51-
"@aws-cdk/aws-certificatemanager": "1.98.0",
52-
"@aws-cdk/aws-cloudfront": "1.98.0",
53-
"@aws-cdk/aws-cloudwatch": "1.98.0",
54-
"@aws-cdk/aws-cognito": "1.98.0",
55-
"@aws-cdk/aws-dynamodb": "1.98.0",
56-
"@aws-cdk/aws-iam": "1.98.0",
57-
"@aws-cdk/aws-kms": "1.98.0",
58-
"@aws-cdk/aws-lambda": "1.98.0",
59-
"@aws-cdk/aws-lambda-nodejs": "1.98.0",
60-
"@aws-cdk/aws-route53": "1.98.0",
61-
"@aws-cdk/aws-route53-targets": "1.98.0",
62-
"@aws-cdk/aws-s3": "1.98.0",
63-
"@aws-cdk/core": "1.98.0",
64-
"@taimos/lambda-toolbox": "^0.0.72",
65-
"cdk-serverless": "^0.0.55",
48+
"@aws-cdk/assert": "1.100.0",
49+
"@aws-cdk/aws-apigatewayv2": "1.100.0",
50+
"@aws-cdk/aws-apigatewayv2-integrations": "1.100.0",
51+
"@aws-cdk/aws-appsync": "1.100.0",
52+
"@aws-cdk/aws-certificatemanager": "1.100.0",
53+
"@aws-cdk/aws-cloudfront": "1.100.0",
54+
"@aws-cdk/aws-cloudwatch": "1.100.0",
55+
"@aws-cdk/aws-cognito": "1.100.0",
56+
"@aws-cdk/aws-dynamodb": "1.100.0",
57+
"@aws-cdk/aws-iam": "1.100.0",
58+
"@aws-cdk/aws-kms": "1.100.0",
59+
"@aws-cdk/aws-lambda": "1.100.0",
60+
"@aws-cdk/aws-lambda-nodejs": "1.100.0",
61+
"@aws-cdk/aws-route53": "1.100.0",
62+
"@aws-cdk/aws-route53-targets": "1.100.0",
63+
"@aws-cdk/aws-s3": "1.100.0",
64+
"@aws-cdk/core": "1.100.0",
65+
"@taimos/lambda-toolbox": "^0.0.117",
66+
"cdk-serverless": "^0.1.2",
6667
"uuid": "^8.3.2"
6768
},
6869
"bundledDependencies": [],

tsconfig.eslint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"strictNullChecks": true,
2222
"strictPropertyInitialization": true,
2323
"stripInternal": true,
24-
"target": "ES2018"
24+
"target": "ES2018",
25+
"allowSyntheticDefaultImports": true
2526
},
2627
"include": [
2728
".projenrc.js",

tsconfig.jest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"strictNullChecks": true,
2222
"strictPropertyInitialization": true,
2323
"stripInternal": true,
24-
"target": "ES2018"
24+
"target": "ES2018",
25+
"allowSyntheticDefaultImports": true
2526
},
2627
"include": [
2728
".projenrc.js",

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"strictNullChecks": true,
2424
"strictPropertyInitialization": true,
2525
"stripInternal": true,
26-
"target": "ES2018"
26+
"target": "ES2018",
27+
"allowSyntheticDefaultImports": true
2728
},
2829
"include": [
2930
"src/**/*.ts"

0 commit comments

Comments
 (0)