-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.ts
32 lines (24 loc) · 878 Bytes
/
.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
import * as pj from 'projen';
const LAST_AWSCDK_VERSION = '2.123.0';
const project = new pj.awscdk.AwsCdkConstructLibrary({
name: '@pgarbe/cdk-bitbucket-server',
description: 'A CDK Construct library to work with BitBucket Server (Stash)',
author: 'Philipp Garbe',
authorAddress: 'https://garbe.io',
repositoryUrl: 'https://github.com/pgarbe/cdk-bitbucket-server.git',
keywords: ['cdk', 'aws-cdk', 'construct', 'aws', 'pgarbe', 'bitbucket', 'bitbucket server'],
license: 'MIT',
catalog: {
twitter: 'pgarbe',
},
// creates PRs for projen upgrades
projenrcTs: true,
defaultReleaseBranch: 'main',
jsiiVersion: '~5.x',
cdkVersion: LAST_AWSCDK_VERSION,
devDeps: ['esbuild', 'pre-commit'],
deps: ['aws-sdk', '@types/aws-lambda'],
bundledDeps: ['aws-sdk', '@types/aws-lambda'],
});
project.npmignore!.exclude('examples');
project.synth();