-
Notifications
You must be signed in to change notification settings - Fork 8
/
.projenrc.ts
36 lines (34 loc) · 1.01 KB
/
.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
36
/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
import { CdklabsConstructLibrary } from "cdklabs-projen-project-types";
import { Stability } from "projen/lib/cdk";
const cdkVersion = "2.159.1";
const project = new CdklabsConstructLibrary({
name: "@cdklabs/cdk-appflow",
author: "Amazon Web Services",
authorAddress: "[email protected]",
cdkVersion,
defaultReleaseBranch: "main",
projenrcTs: true,
private: false,
repositoryUrl: "https://github.com/cdklabs/cdk-appflow.git",
stability: Stability.EXPERIMENTAL,
docgen: true,
eslint: true,
prettier: true,
bundledDeps: [],
devDeps: ["@types/aws-lambda", "esbuild"],
peerDeps: [
`@aws-cdk/aws-redshift-alpha@${cdkVersion}-alpha.0`,
`@aws-cdk/aws-glue-alpha@${cdkVersion}-alpha.0`,
],
jsiiVersion: "~5.4.30",
keywords: ["aws", "appflow", "cdk"],
gitignore: ["*.rest", ".vscode", "**/.DS_Store"],
jestOptions: {
jestVersion: "^29",
},
});
project.synth();