-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
63 lines (49 loc) · 2.01 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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
name: 'build-pipelines',
packageName: '@tts-cdk/build-pipelines',
author: 'tts Knowledge Products GmbH',
authorAddress: '[email protected]',
authorOrganization: true,
repositoryUrl: 'https://github.com/ttskp/cdk-pipelines.git',
defaultReleaseBranch: 'main',
gitignore: ['.idea/', 'cdk.out/', 'cdk.context.json'],
cdkVersion: '2.96.0',
bundledDeps: ['yaml'],
devDeps: [
'ts-node',
'@aws-sdk/client-cloudformation',
'@aws-sdk/client-sts',
],
deps: [
],
dependabot: true,
// cdkDependencies: undefined, /* Which AWS CDK modules (those that start with "aws-cdk-lib/") does this library require when consumed? */
// cdkTestDependencies: undefined, /* AWS CDK modules required for testing. */
// 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. */
// projectType: ProjectType.UNKNOWN, /* Which type of project this is (library/app). */
// releaseWorkflow: undefined, /* Define a GitHub workflow for releasing from "main" when new versions are bumped. */
/*
publishToMaven: {
mavenGroupId: 'com.tts.cdk',
mavenArtifactId: 'build-pipelines',
javaPackage: 'com.tts.cdk.buildpipelines',
mavenRepositoryUrl: process.env.MAVEN_REPOSITORY_URL ?? '',
mavenServerId: process.env.MAVEN_SERVER_ID ?? '',
},
*/
/*
publishToPypi: {
distName: 'tts-cdk-build-pipelines',
module: 'tts_cdk.build_pipelines',
twineRegistryUrl: process.env.TWINE_REPOSITORY_URL ?? '',
twineUsernameSecret: process.env.TWINE_USERNAME ?? 'aws',
twinePasswordSecret: process.env.TWINE_PASSWORD ?? '',
},
*/
// npmAccess: NpmAccess.PUBLIC,
});
project.synth();