-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
49 lines (41 loc) · 1.42 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
import { awscdk } from 'projen';
import { DependabotScheduleInterval } from 'projen/lib/github';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Gregg Schofield',
authorAddress: '[email protected]',
cdkVersion: '2.1.0',
defaultReleaseBranch: 'main',
jsiiVersion: '~5.5.0',
name: 'cdk-construct-library',
projenrcTs: true,
repositoryUrl: 'https://github.com/GreggSchofield/cdk-construct-library',
depsUpgrade: false,
dependabot: true,
dependabotOptions: {
scheduleInterval: DependabotScheduleInterval.DAILY,
},
gitIgnoreOptions: {
ignorePatterns: [
'.idea/',
],
},
codeCov: true,
codeCovTokenSecret: 'CODECOV_TOKEN',
publishToGo: {
moduleName: 'github.com/GreggSchofield/cdk-construct-library-go',
githubTokenSecret: 'GO_GITHUB_TOKEN',
},
publishToNuget: {
dotNetNamespace: 'GreggSchofield.CdkConstructLibrary',
packageId: 'GreggSchofield.CdkConstructLibrary',
},
publishToPypi: {
distName: 'GreggSchofield-cdk-construct-library',
module: 'GreggSchofield_cdk-construct-library',
},
// 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();