-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
26 lines (24 loc) · 929 Bytes
/
.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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Sentia MPC',
authorAddress: '[email protected]',
cdkVersion: '2.1.0',
name: 'halloumi-cloudwatch-dashboard',
repositoryUrl: 'https://github.com/sentiampc/halloumi-cloudwatch-dashboard.git',
bundledDeps: ['@types/[email protected]'],
docgen: true, /* Automatically generate API.md from jsii. */
eslint: true, /* Install eslint. */
publishToPypi: {
distName: 'halloumi-cloudwatch-dashboard',
module: 'halloumi_cloudwatch_dashboard',
}, /* Publish to pypi. */
license: 'Apache-2.0', /* License's SPDX identifier. */
antitamper: false, /* Checks that after build there are no modified files on git. */
defaultReleaseBranch: 'master', /* The name of the main release branch. */
projenUpgradeSecret: 'PROJEN_GITHUB_TOKEN',
gitignore: [
'.vscode/',
],
majorVersion: 2,
});
project.synth();