-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
21 lines (20 loc) · 1022 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const { AwsCdkConstructLibrary } = require('projen');
const project = new AwsCdkConstructLibrary({
author: 'NukaCody',
authorAddress: 'codyjp8@gmail.com',
cdkVersion: '1.132.0',
defaultReleaseBranch: 'main',
name: 'tgw-l2',
repositoryUrl: 'https://github.com/codyjp8/tgw-l2.git',
cdkDependencies: [
'@aws-cdk/core',
'@aws-cdk/aws-ec2',
], /* Which AWS CDK modules (those that start with "@aws-cdk/") does this library require when consumed? */
// cdkTestDependencies: undefined, /* AWS CDK modules required for testing. */
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
// release: undefined, /* Add release management to this project. */
});
project.synth();