-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
31 lines (27 loc) · 922 Bytes
/
.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
const { JsiiProject, Semver } = require('projen');
const cdktfVersion = Semver.caret('0.0.16')
const constructsVersion = Semver.caret('3.0.0')
const githubProviderVersion = Semver.caret('0.0.9')
const project = new JsiiProject({
name: "cdktf-github-constructs",
authorName: "Sebastian Korfmann",
authorEmail: "[email protected]",
repository: "https://github.com/skorfmann/cdktf-github-constructs.git",
dependencies: {
'@cdktf/provider-github': githubProviderVersion
},
devDependencies: {
'@cdktf/provider-github': githubProviderVersion,
'cdktf': cdktfVersion,
'constructs': constructsVersion
},
peerDependencies: {
'cdktf': cdktfVersion,
'constructs': constructsVersion,
'@cdktf/provider-github': githubProviderVersion
}
});
project.gitignore.exclude('**/*.js')
project.gitignore.exclude('**/*.d.ts')
project.gitignore.exclude('package-lock.json')
project.synth();