-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
56 lines (48 loc) · 1.49 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { AwsCdkConstructLibrary } from "@pepperize/projen-awscdk-construct";
import { javascript } from "projen";
const project = new AwsCdkConstructLibrary({
author: "Patrick Florek",
authorAddress: "[email protected]",
cdkVersion: "2.1.0",
name: "@pepperize/cdk-vpc",
description: "Utility constructs for tagging subnets or creating a cheaper vpc.",
keywords: ["AWS", "CDK", "EC2", "VPC", "NatGateway", "NatInstance", "Tag", "Subnet", "Utilities"],
repositoryUrl: "https://github.com/pepperize/cdk-vpc.git",
projenrcTs: true,
devDeps: [
"@pepperize/projen-awscdk-construct",
"@types/aws-lambda",
"@types/jest",
"@types/sinon",
"aws-lambda",
"aws-sdk",
"aws-sdk-mock",
"sinon",
],
defaultReleaseBranch: "main",
releaseToNpm: true,
npmAccess: javascript.NpmAccess.PUBLIC,
publishToNuget: {
dotNetNamespace: "Pepperize.CDK",
packageId: "Pepperize.CDK.Vpc",
},
publishToPypi: {
distName: "pepperize.cdk-vpc",
module: "pepperize_cdk_vpc",
},
publishToMaven: {
mavenEndpoint: "https://s01.oss.sonatype.org",
mavenGroupId: "com.pepperize",
mavenArtifactId: "cdk-vpc",
javaPackage: "com.pepperize.cdk.vpc",
},
gitpod: true,
});
project.tasks.tryFind("package:python")?.prependExec("pip3 install packaging");
project.gitpod?.addCustomTask({
name: "setup",
init: "yarn install && npx projen build",
command: "npx projen watch",
});
project.gitpod?.addVscodeExtensions("dbaeumer.vscode-eslint");
project.synth();