-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.projenrc.js
48 lines (43 loc) · 1.33 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
const { ConstructLibraryCdk8s } = require('projen');
const project = new ConstructLibraryCdk8s({
author: 'Hunter Thompson',
authorAddress: '[email protected]',
cdk8sVersion: '1.0.0-beta.8',
defaultReleaseBranch: 'development',
stability: 'experimental',
jsiiFqn: 'projen.ConstructLibraryCdk8s',
name: '@opencdk8s/cdk8s-redis-sts',
npmAccess: 'public',
repositoryUrl: 'https://github.com/opencdk8s/cdk8s-redis-sts',
python: {
distName: 'cdk8s-redis-sts',
module: 'cdk8s_redis_sts',
},
peerDeps: ['constructs@^3.3.5'],
releaseEveryCommit: false,
devDeps: [
'constructs@^3.3.5',
'prettier@^2.2.1',
'jsii-pacmak@^1.20.1',
'@commitlint/config-conventional@^11.0.0',
'@commitlint/cli@^11.0.0',
'eslint-import-resolver-node@^0.3.4',
'eslint-import-resolver-typescript@^2.3.0',
'eslint-plugin-import@^2.22.1',
'eslint@^7.19.0',
'jsii-diff@^1.20.1',
'jsii-docgen@^1.8.36',
'jsii@^1.20.1',
'json-schema@^0.3.0',
],
dependabot: false,
gitignore: ['package.json', 'test/'],
pullRequestTemplate: false,
releaseBranches: ['development'],
codeCov: true,
clobber: false,
readme: true,
});
const common_exclude = ['cdk.out', 'package.json', 'yarn-error.log', 'coverage', '.DS_Store', '.idea', '.vs_code'];
project.gitignore.exclude(...common_exclude);
project.synth();