Thank you for contributing to cdk-organizations! ❤️
This document describes how to set up your development environment and submit your contributions. Please read it and submit a pull request if it's not up-to date 😉.
The following tools need to be installed to develop on projen locally.
The basic commands to get the repository cloned and built locally follow:
git clone git@github.com:pepperize/cdk-organizations
cd cdk-organizations
# install dependencies
yarn
# build with projen
yarn build
The projen package provides the following scripts:
build
- builds the package, generates api docs, runs linter and runs all unit testswatch
- watches for file changes and builds them progressivelytest
- executes all unit tests and runs lintertest:update
- executes all unit tests and overwrites snapshot expectations (those.snap
files)test:watch
- runs all unit tests and reruns tests when files are changedeslint
- runs linter against source codeformat
- runs prettier
Each of these scripts can be executed using yarn <script>
or npx projen <script>
.
Tests are located under test/
.
One trick for quickly iterating is to run yarn watch
in one terminal, and
yarn test:watch
in another. Then, when you change your unit tests the code
will automatically recompile, thus triggering the tests to automatically re-run.
Eslint is used to lint and format our typescript code. The eslint
script can be run from the root of the package.
You can integrate the linting and formatting workflow with your editor or ide by installing the approporiate eslint plugin. For example, when using Webstorm, the eslint plugin exposes a number of options including "fix on save". This will auto correct lint and formatting errors whenever possible while saving a document.
This project uses projen to maintain project configuration through code. Thus, the synthesized files with projen should never be manually edited (in fact, projen enforces that).
To modify the project setup, you should interact with rich strongly-typed
class AwsCdkConstructLibrary and
execute npx projen
to update project configuration files.
In simple words, developers can only modify
.projenrc.js
file for configuration/maintenance and files under/src
or/test
directory for development.
See also Create and Publish CDK Constructs Using projen and jsii.
Currently, projen bumps versions automatically thru a GitHub action when a commit pushed to master successfully builds. Projen follows semantic versioning through the standard-version npm utility.
- Commit title and message (and PR title and description) must adhere to conventionalcommits.
- The title must begin with
feat(module): title
,fix(module): title
,refactor(module): title
orchore(module): title
, where the module refers to the projects or components that the change centers on. The module can be omitted, so "feat: title" is okay as well. - Title should be lowercase.
- No period at the end of the title.
- The title must begin with
- Commit message should describe motivation. Think about your code reviewers and what information they need in order to understand what you did. If it's a big commit (hopefully not), try to provide some good entry points so it will be easier to follow.
- Commit message should indicate which issues are fixed:
fixes #<issue>
orcloses #<issue>
. - Shout out to collaborators.
- If not obvious (i.e. from unit tests), describe how you verified that your change works.
- If this commit includes breaking changes, they must be listed at the end in the following format (notice how multiple breaking changes should be formatted):
BREAKING CHANGE: Description of what broke and how to achieve this behavior now
* **module-name:** Another breaking change
* **module-name:** Yet another breaking change