forked from cdklabs/cdk-ecs-service-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
62 lines (53 loc) · 1.44 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
const { awscdk } = require('projen');
const deps = [
'aws-cdk-lib',
'constructs',
];
const project = new awscdk.AwsCdkConstructLibrary({
packageName: '@aws-cdk-containers/ecs-service-extensions',
author: 'Amazon Web Services',
authorAddress: 'https://aws.amazon.com',
authorOrganization: true,
cdkVersion: '2.1.0',
defaultReleaseBranch: 'main',
name: 'cdklabs/cdk-ecs-service-extensions',
repositoryUrl: 'https://github.com/cdklabs/cdk-ecs-service-extensions.git',
stability: 'experimental',
majorVersion: 2,
prerelease: 'alpha',
deps,
peerDeps: deps,
devDeps: [
'@types/jest',
'aws-cdk-lib',
'jest',
],
publishToPypi: {
distName: 'cdk-ecs-service-extensions',
module: 'cdk_ecs_service_extensions',
},
publishToNuget: {
packageId: 'Cdklabs.CdkEcsServiceExtensions',
dotNetNamespace: 'Cdklabs.CdkEcsServiceExtensions',
},
publishToMaven: {
mavenGroupId: 'io.github.cdklabs',
javaPackage: 'io.github.cdklabs.cdkecsserviceextensions',
mavenArtifactId: 'cdk-ecs-service-extensions',
mavenEndpoint: 'https://s01.oss.sonatype.org',
},
autoApproveOptions: {
allowedUsernames: ['cdklabs-automation'],
secret: 'GITHUB_TOKEN',
},
// releaseWorkflowSetupSteps: [{
// name: 'Set up Docker Buildx',
// id: 'buildx',
// uses: 'docker/setup-buildx-action@v1',
// with: {
// install: true,
// },
// }],
autoApproveUpgrades: true,
});
project.synth();