-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
44 lines (44 loc) · 1.62 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const { AwsCdkConstructLibrary } = require('projen/lib/awscdk');
const { NpmAccess } = require('projen/lib/javascript');
const CDK_VERSION = '2.169.0';
const project = new AwsCdkConstructLibrary({
author: 'Bharat Parmar',
authorAddress: '[email protected]',
cdkVersion: `${CDK_VERSION}`,
cdkVersionPinning: false,
constructsVersion: '10.0.5',
constructsVersionPinning: false,
releaseWorkflow: true,
defaultReleaseBranch: 'main',
release: true,
packageName: '@smallcase/cdk-vpc-module',
name: '@smallcase/cdk-vpc-module',
repositoryUrl: 'https://github.com/smallcase/cdk-vpc-module.git',
devDeps: [
`aws-cdk-lib@${CDK_VERSION}`,
],
peerDeps: [
`aws-cdk-lib@${CDK_VERSION}`,
],
npmAccess: NpmAccess.PUBLIC,
releaseToNpm: true,
publishToPypi: {
distName: 'cdk-vpc-module',
module: 'cdk_vpc_module',
},
publishToGo: {
gitUserName: 'sc-infra-bot',
gitUserEmail: '[email protected]',
moduleName: 'github.com/smallcase/cdk-vpc-module-go',
},
releaseEveryCommit: true,
licensed: true, /* Indicates if a license should be added. */
dependabot: false, /* Include dependabot configuration. */
mergify: false, /* Adds mergify configuration. */
pullRequestTemplate: true, /* Include a GitHub pull request template. */
// 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. */
});
project.synth();