-
Notifications
You must be signed in to change notification settings - Fork 2
/
.projenrc.js
45 lines (41 loc) · 1.26 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 { ConstructLibraryCdk8s } = require('projen/lib/cdk8s');
const CDK_VERSION = '2.22.0';
const project = new ConstructLibraryCdk8s({
author: 'Hunter Thompson',
authorAddress: '[email protected]',
cdk8sVersion: '2.2.74',
constructsVersion: '10.0.5',
defaultReleaseBranch: 'development',
stability: 'experimental',
jsiiFqn: 'projen.ConstructLibraryCdk8s',
name: '@opencdk8s/cdk8s-cluster-autoscaler-aws',
keywords: ['cdk8s', 'cdk'],
npmAccess: 'public',
repositoryUrl: 'https://github.com/opencdk8s/cdk8s-cluster-autoscaler-aws',
python: {
distName: 'cdk8s-cluster-autoscaler-aws',
module: 'cdk8s_cluster_autoscaler_aws',
},
devDeps: [
`aws-cdk-lib@${CDK_VERSION}`,
],
peerDeps: [
`aws-cdk-lib@${CDK_VERSION}`,
],
releaseEveryCommit: true,
publishToGo: {
gitUserName: 'Hunter-Thompson',
gitUserEmail: '[email protected]',
moduleName: 'github.com/opencdk8s/cdk8s-cluster-autoscaler-aws-go',
},
depsUpgrade: false,
dependabot: false,
pullRequestTemplate: false,
codeCov: true,
clobber: false,
readme: true,
mergify: true,
});
const common_exclude = ['cdk.out', 'yarn-error.log', 'coverage', '.DS_Store', '.idea', '.vs_code'];
project.gitignore.exclude(...common_exclude);
project.synth();