-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projenrc.ts
More file actions
77 lines (74 loc) · 1.9 KB
/
Copy path.projenrc.ts
File metadata and controls
77 lines (74 loc) · 1.9 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { awscdk, javascript } from 'projen';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Renovo Solutions',
authorAddress: 'webmaster+cdk@renovo1.com',
cdkVersion: '2.233.0',
defaultReleaseBranch: 'master',
jsiiVersion: '5.9.22',
name: '@renovosolutions/cdk-library-aurora-native-backup',
projenrcTs: true,
repositoryUrl: 'https://github.com/RenovoSolutions/cdk-library-aurora-native-backup.git',
description: 'AWS CDK construct library for Aurora backup and restore using ECS on a schedule, storing backups in S3.',
keywords: [
'cdk',
'aws-cdk',
'aws-cdk-construct',
'aurora',
'serverless',
'backup',
'projen',
],
deps: [
'cdk-ecr-deployment@^4.0.5',
],
peerDeps: [
'constructs@10.4.5',
'aws-cdk-lib@2.233.0',
'cdk-nag@2.37.55',
],
depsUpgrade: true,
depsUpgradeOptions: {
workflow: false,
exclude: ['projen'],
},
devDeps: [
'@types/jest@^30.0.0',
'constructs@10.4.5',
'aws-cdk-lib@2.233.0',
'@aws-sdk/client-s3@^3.0.0',
'prompts@^2.4.0',
'@types/prompts@^2.4.9',
'cdk-nag@2.37.55',
],
githubOptions: {
mergify: false,
pullRequestLintOptions: {
semanticTitle: false,
},
},
stale: false,
releaseToNpm: true,
buildWorkflow: false,
release: true,
npmAccess: javascript.NpmAccess.PUBLIC,
docgen: true,
eslint: true,
tsconfigDev: {
compilerOptions: {
isolatedModules: true,
},
},
publishToPypi: {
distName: 'renovosolutions.aws-cdk-aurora-native-backup',
module: 'renovosolutions_aurora_native_backup',
},
});
// Ignore the release workflow file so it's not committed to git
project.gitignore.exclude('!/.github/workflows/release.yml');
project.gitignore.addPatterns('.github/workflows/release.yml');
new javascript.UpgradeDependencies(project, {
include: ['projen'],
taskName: 'upgrade-projen',
workflow: false,
});
project.synth();