-
Notifications
You must be signed in to change notification settings - Fork 3
/
.projenrc.js
30 lines (26 loc) · 1014 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const { awscdk } = require('projen');
const { Stability } = require('projen/lib/cdk');
const { UpgradeDependenciesSchedule } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkTypeScriptApp({
authorName: 'Stefan Freitag',
authorEmail: '[email protected]',
cdkVersion: '2.160.0',
name: 'hello-world-lambda',
description: 'A simple Hello World application using an AWS API Gateway and Lambda function.',
repository: 'https://github.com/stefanfreitag/helloWorldLambda.git',
keywords: ['aws', 'cdk', 'lambda', 'apigateway'],
depsUpgradeOptions: {
workflowOptions: {
schedule: UpgradeDependenciesSchedule.MONTHLY,
},
},
defaultReleaseBranch: 'master',
stability: Stability.STABLE,
cdkVersionPinning: true,
copyrightPeriod: 2020,
copyrightOwner: 'Stefan Freitag',
});
const common_exclude = ['cdk.context.json', 'yarn-error.log', '.history'];
project.npmignore.exclude(...common_exclude);
project.gitignore.exclude(...common_exclude);
project.synth();