-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
40 lines (33 loc) · 1.14 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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'flyingImer',
authorAddress: '[email protected]',
cdkVersion: '2.21.0',
autoApproveOptions: {
allowedUsernames: ['flyingImer'],
},
autoApproveUpgrades: true,
codeCov: true,
defaultReleaseBranch: 'main',
name: 'cdk-cors-proxy',
repositoryUrl: 'https://github.com/flyingImer/cdk-cors-proxy.git',
stability: 'experimental',
// deps: [], /* Runtime dependencies of this module. */
description: 'A proxy to make an endpoint CORS-compatible', /* The description is just a string that helps people understand the purpose of the package. */
devDeps: [
'@types/aws-lambda',
'@types/lodash.isstring',
'esbuild@0',
], /* Build dependencies for this module. */
bundledDeps: [
'axios',
'aws4-axios',
'lodash.isstring',
'pino',
],
// packageName: undefined, /* The "name" in package.json. */
});
project.tsconfigDev.addInclude('example/**/*.ts');
project.gitignore.exclude('**/*.bak');
project.gitignore.exclude('example/**/*.js', 'example/**/*.d.ts', 'example/cdk.out');
project.synth();