Skip to content

Commit

Permalink
feat: pin projen version
Browse files Browse the repository at this point in the history
  • Loading branch information
pflorek committed Mar 6, 2023
1 parent 6b17e9e commit 38b60e3
Show file tree
Hide file tree
Showing 10 changed files with 755 additions and 2,126 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/pull-request-lint.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { javascript, cdk } from "projen";
import { PROJEN_VERSION } from "./src";

const project = new cdk.JsiiProject({
author: "Patrick Florek",
authorAddress: "patrick.florek@gmail.com",
Expand Down Expand Up @@ -50,8 +52,8 @@ const project = new cdk.JsiiProject({

gitignore: [".idea/", "*.iml", ".vscode"],

deps: ["projen"] /* Runtime dependencies of this module. */,
peerDeps: ["projen"],
devDeps: [`projen@${PROJEN_VERSION}`] /* Runtime dependencies of this module. */,
peerDeps: [`projen@${PROJEN_VERSION}`],
});

project.setScript("format", "prettier --write src/**/*.ts test/**/*.ts .projenrc.[jt]s README.md");
Expand Down
Loading

0 comments on commit 38b60e3

Please sign in to comment.