-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.projenrc.js
72 lines (72 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Neil Kuan',
authorAddress: '[email protected]',
cdkVersion: '2.126.0',
/**
* we default release the main branch(cdkv2) with major version 2.
*/
majorVersion: 2,
defaultReleaseBranch: 'main',
/**
* we also release the cdkv1 branch with major version 1.
*/
releaseBranches: {
cdkv1: { npmDistTag: 'cdkv1', majorVersion: 1 },
},
defaultReleaseBranch: 'main',
name: 'cdk-certbot-dns-route53',
repositoryUrl: 'https://github.com/neilkuan/cdk-certbot-dns-route53.git',
description: 'Create Cron Job Via Lambda, to update certificate and put it to S3 Bucket.',
keywords: ['aws', 'cdk', 'certbot'],
depsUpgradeOptions: {
ignoreProjen: false,
workflowOptions: {
labels: ['auto-approve', 'auto-merge'],
},
exclude: ['mock-fs'],
},
autoApproveOptions: {
secret: 'GITHUB_TOKEN',
allowedUsernames: ['neilkuan'],
},
publishToPypi: {
distName: 'cdk-certbot-dns-route53',
module: 'cdk_certbot_dns_route53',
},
catalog: {
announce: true,
twitter: 'neilkuan',
},
gitignore: [
'cdk.context.json',
'yarn-error.log',
'cdk.out',
'assets/venv/**',
'assets/layers/**',
'venv/**',
],
npmignore: [
'cdk.context.json',
'yarn-error.log',
'cdk.out',
'images',
'assets/venv/**',
'assets/layers/**',
],
deps: [
'@aws-cdk/[email protected]',
],
bundledDependencies: [
'@aws-cdk/[email protected]',
],
devDeps: [
],
minNodeVersion: '20.10.0',
workflowNodeVersion: '20.10.0',
typescriptVersion: '^5',
jsiiVersion: '5.3.x',
});
project.synth();