-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds prettier as devDeps in projenrc.ts
- Loading branch information
1 parent
fd2207c
commit 6a1b03e
Showing
7 changed files
with
172 additions
and
130 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,12 @@ const project = new CdklabsConstructLibrary({ | |
authorAddress: '[email protected]', | ||
cdkVersion: '2.164.1', | ||
defaultReleaseBranch: 'main', | ||
devDeps: ['cdklabs-projen-project-types', 'aws-cdk-lib'], | ||
devDeps: [ | ||
'cdklabs-projen-project-types', | ||
'aws-cdk-lib', | ||
'@ianvs/prettier-plugin-sort-imports', | ||
'prettier', | ||
], | ||
jsiiVersion: '~5.5.0', | ||
constructsVersion: '10.4.2', | ||
name: 'mason', | ||
|
@@ -21,9 +26,11 @@ const project = new CdklabsConstructLibrary({ | |
'fast-json-patch', | ||
], | ||
peerDeps: ['aws-cdk-lib', 'cdk-pipelines-github'], | ||
depsUpgrade: true, | ||
deps: [] /* Runtime dependencies of this module. */, | ||
|
||
description: | ||
'review pipelines with cdk and GitHub' /* The description is just a string that helps people understand the purpose of the package. */, | ||
'review pipelines with cdk and GitHub' /* The description is just a string that helps people understand the purpose of the package. */, | ||
packageName: '@codeinbox/mason' /* The "name" in package.json. */, | ||
}); | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.