-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
51 lines (49 loc) · 1.29 KB
/
.projenrc.ts
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
import { awscdk, javascript } from 'projen';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Renovo Solutions',
authorAddress: '[email protected]',
projenrcTs: true,
cdkVersion: '2.154.1',
defaultReleaseBranch: 'master',
name: '@renovosolutions/cdk-library-cloudwatch-alarms',
description: 'AWS CDK Construct Library to automatically create CloudWatch Alarms for resources in a CDK app based on resource type.',
repositoryUrl: 'https://github.com/RenovoSolutions/cdk-library-cloudwatch-alarms.git',
keywords: [
'cloudwatch',
'alarms',
'cdk',
'aws-cdk',
'aws-cdk-construct',
'projen',
],
depsUpgrade: true,
depsUpgradeOptions: {
workflow: false,
exclude: ['projen'],
},
githubOptions: {
mergify: false,
pullRequestLintOptions: {
semanticTitle: false,
},
},
stale: false,
releaseToNpm: true,
release: true,
npmAccess: javascript.NpmAccess.PUBLIC,
docgen: true,
eslint: true,
publishToPypi: {
distName: 'renovosolutions.aws-cdk-cloudwatch-alarms',
module: 'alarms',
},
});
new javascript.UpgradeDependencies(project, {
include: ['projen'],
taskName: 'upgrade-projen',
workflow: true,
workflowOptions: {
schedule: javascript.UpgradeDependenciesSchedule.WEEKLY,
},
});
project.synth();