-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projenrc.js
More file actions
32 lines (32 loc) · 1.29 KB
/
.projenrc.js
File metadata and controls
32 lines (32 loc) · 1.29 KB
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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Tom Stroobants',
authorAddress: 'tom@stroobants.dev',
cdkVersion: '2.0.0',
license: 'MPL-2.0',
defaultReleaseBranch: 'main',
name: 'daily-spend-to-slack',
repositoryUrl: 'https://github.com/stroobants-dev/daily-spend-to-slack.git',
keywords: ['awscdk', 'cdk', 'budget', 'spend', 'daily', 'slack', 'cost', 'finops'],
workflowNodeVersion: '^14.17.0',
python: {
distName: 'cdk-daily-spend-to-slack',
module: 'cdk_daily_spend_to_slack',
},
deps: [
'aws-cdk-lib',
'constructs',
], /* 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. */
// release: undefined, /* Add release management to this project. */
// python: {
// distName: 'cloudwatch-auto-retention',
// module: 'cdk_cloudwatch_auto_retention',
// },
});
const common_exclude = ['cdk.out', 'cdk.context.json', 'yarn-error.log', 'coverage'];
project.gitignore.exclude(...common_exclude);
project.npmignore.exclude(...common_exclude, 'images');
project.synth();