-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.ts
36 lines (36 loc) · 1.15 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
import { awscdk } from 'projen';
const cdkVersion = '2.33.0';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'WinterYukky',
authorAddress: '49480575+WinterYukky@users.noreply.github.com',
cdkVersion,
defaultReleaseBranch: 'main',
name: 'cdk-glue-job-builder',
projenrcTs: true,
repositoryUrl: 'https://github.com/WinterYukky/cdk-glue-job-builder.git',
prettier: true,
prettierOptions: {
settings: {
singleQuote: true,
},
},
keywords: ['Glue'],
eslintOptions: {
dirs: ['src'],
prettier: true,
},
deps: [
`@aws-cdk/aws-glue-alpha@${cdkVersion}-alpha.0`,
] /* Runtime dependencies of this module. */,
description:
'A construct library that builds Glue Job Script as if it were Glue Studio.' /* The description is just a string that helps people understand the purpose of the package. */,
devDeps: [
`@aws-cdk/aws-glue-alpha@${cdkVersion}-alpha.0`,
'@types/aws-lambda',
'aws-sdk',
'esbuild',
] /* Build dependencies for this module. */,
// packageName: undefined, /* The "name" in package.json. */
peerDeps: [`@aws-cdk/aws-glue-alpha@${cdkVersion}-alpha.0`],
});
project.synth();