-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
35 lines (33 loc) · 881 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
33
34
35
import { awscdk } from "projen";
const project = new awscdk.AwsCdkTypeScriptApp({
cdkVersion: "2.158.0",
name: "cdk-preview-environments",
repository: "https://github.com/nikovirtala/cdk-preview-environments.git",
license: "MIT",
licensed: true,
authorName: "Niko Virtala",
authorEmail: "niko.virtala@hey.com",
devDeps: ["prettier"],
deps: ["@aws-cdk-containers/ecs-service-extensions@^2"],
depsUpgradeOptions: {
workflowOptions: {
labels: ["auto-approve", "auto-merge"],
},
},
autoApproveOptions: {
secret: "GITHUB_TOKEN",
allowedUsernames: ["nikovirtala"],
},
buildWorkflow: true,
codeCov: false,
eslint: true,
prettier: true,
jest: false,
mergify: true,
pullRequestTemplate: false,
defaultReleaseBranch: "main",
typescriptVersion: "5.5.4",
projenrcTs: true,
minNodeVersion: "18.18.0",
});
project.synth();