-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
56 lines (52 loc) · 1.47 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
const { awscdk } = require('projen');
const { Stability } = require('projen/lib/cdk');
const { UpgradeDependenciesSchedule } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Stefan Freitag',
authorAddress: '[email protected]',
authorOrganization: false,
homepage: 'https://stefanfreitag.github.io/AWS-FSx-Lifecycle-Status-Monitor',
cdkVersion: '2.165.0',
defaultReleaseBranch: 'main',
name: 'aws-fsx-lifecycle-status-monitor',
repositoryUrl: 'https://github.com/stefanfreitag/AWS-FSx-Lifecycle-Status-Monitor',
keywords: ['aws', 'fsx', 'lifecycle', 'monitor'],
tsconfigDev: {
compilerOptions: {
ignoreDeprecations: '5.0',
},
},
tsconfig: {
compilerOptions: {
ignoreDeprecations: '5.0',
},
},
devDeps: [
'@aws-cdk/[email protected]',
'@aws-cdk/[email protected]',
'ts-node',
],
depsUpgradeOptions: {
workflowOptions: {
schedule: UpgradeDependenciesSchedule.MONTHLY,
},
},
stability: Stability.EXPERIMENTAL,
stale: true,
staleOptions: {
issues: {
close: true,
},
pullRequests: {
close: true,
},
},
publishToPypi: {
module: 'aws_fsx_lifecycle_status_monitor',
distName: 'aws-fsx-lifecycle-status-monitor',
},
});
const commonExcludes = ['.history/', '.venv', '.idea'];
project.gitignore.addPatterns(...commonExcludes);
project.npmignore.addPatterns(...commonExcludes);
project.synth();