-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.projenrc.ts
34 lines (31 loc) · 1.1 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
import { CdklabsTypeScriptProject } from 'cdklabs-projen-project-types';
const project = new CdklabsTypeScriptProject({
private: false,
enablePRAutoMerge: true,
name: 'json2jsii',
projenrcTs: true,
setNodeEngineVersion: false,
description: 'Generates jsii structs from JSON schemas',
authorName: 'Elad Ben-Israel',
authorEmail: 'elad.benisrael@gmail.com',
repository: 'https://github.com/cdklabs/json2jsii',
deps: ['json-schema', 'camelcase', 'snake-case'],
devDeps: ['@types/json-schema', 'jsii-srcmak', 'prettier', 'cdklabs-projen-project-types'],
releaseToNpm: true,
defaultReleaseBranch: 'main',
autoApproveUpgrades: true,
pullRequestTemplate: true,
pullRequestTemplateContents: [
'Fixes #',
'',
'---',
'',
'### Ask Yourself',
'',
'- [ ] Have you reviewed the [contribution guide](https://github.com/cdklabs/json2jsii/blob/main/CONTRIBUTING.md)?',
'- [ ] Have you reviewed the [breaking changes guide](https://github.com/cdklabs/json2jsii/blob/main/CONTRIBUTING.md#breaking-changes)?',
'',
],
});
project.gitignore.exclude('.vscode/');
project.synth();