-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
35 lines (35 loc) · 999 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 { cdk8s } from 'projen';
const project = new cdk8s.ConstructLibraryCdk8s({
name: 'cdk8s-pipelines',
repositoryUrl: 'https://github.com/cloud-native-toolkit/cdk8s-pipelines.git',
defaultReleaseBranch: 'main',
author: 'Nathan Good',
authorAddress: '[email protected]',
cdk8sVersion: '2.68.30',
jsiiVersion: '~5.4.0',
workflowNodeVersion: '18.x',
projenrcTs: true,
peerDeps: [
'cdk8s',
'constructs',
],
devDeps: [
'@cdk8s/projen-common',
'cdk8s-plus-27',
],
keywords: [
'cdk8s',
'kubernetes',
'pipelines',
'tekton',
],
gitignore: [
'.idea/',
],
minMajorVersion: 2,
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();