-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
* feat: cloudformation registry update * chore: self mutation Signed-off-by: github-actions <github-actions@github.com> --------- Signed-off-by: github-actions <github-actions@github.com> Co-authored-by: mergify <mergify@users.noreply.github.com> Co-authored-by: github-actions <github-actions@github.com>
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". | ||
node_modules/ | ||
!/.gitattributes | ||
!/.projen/tasks.json | ||
!/.projen/deps.json | ||
!/.projen/files.json | ||
!/LICENSE | ||
!/README.md | ||
!/package.json | ||
/.jsii | ||
/lib/ | ||
/tsconfig.json | ||
/dist/ | ||
tsconfig.tsbuildinfo | ||
!/.npmignore |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". | ||
.projen | ||
dist | ||
src | ||
test | ||
tsconfig.tsbuildinfo | ||
!.jsii | ||
!.jsii.gz |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"files": [ | ||
".gitattributes", | ||
".gitignore", | ||
".projen/deps.json", | ||
".projen/files.json", | ||
".projen/tasks.json", | ||
"LICENSE", | ||
"package.json", | ||
"README.md" | ||
], | ||
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"." | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"tasks": { | ||
"build": { | ||
"name": "build", | ||
"description": "Full release build", | ||
"steps": [ | ||
{ | ||
"spawn": "pre-compile" | ||
}, | ||
{ | ||
"spawn": "compile" | ||
}, | ||
{ | ||
"spawn": "post-compile" | ||
}, | ||
{ | ||
"spawn": "test" | ||
}, | ||
{ | ||
"spawn": "package" | ||
} | ||
] | ||
}, | ||
"compile": { | ||
"name": "compile", | ||
"description": "Only compile" | ||
}, | ||
"default": { | ||
"name": "default", | ||
"description": "Synthesize project files", | ||
"steps": [ | ||
{ | ||
"exec": "npx projen default", | ||
"cwd": "../../.." | ||
} | ||
] | ||
}, | ||
"package": { | ||
"name": "package", | ||
"description": "Creates the distribution package" | ||
}, | ||
"post-compile": { | ||
"name": "post-compile", | ||
"description": "Runs after successful compilation" | ||
}, | ||
"pre-compile": { | ||
"name": "pre-compile", | ||
"description": "Prepare the project for compilation" | ||
}, | ||
"test": { | ||
"name": "test", | ||
"description": "Run tests" | ||
} | ||
}, | ||
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"." | ||
} |