You are here to help on BPMN Visualization JS? Awesome, feel welcome and read the following guidelines in order to know how to contribute, to ask questions and to make BPMN Visualization JS such a great tool.
All members of our community are expected to follow our Code of Conduct. Please make sure you are welcoming and friendly in all of our spaces.
There are many ways to contribute:
- help people with the questions they ask on the Github Issues
- submitting bug reports and feature requests in the Github Issues
- writing code which can be incorporated into BPMN Visualization JS itself
- improving the documentation
- improve the existing example applications to demonstrate features in BPMN Visualization JS
For all contributions, please respect the following guidelines:
-
If you've noticed a bug or have a feature request, let us know in the GitHub Issue tracker! So we can confirm the bug or approve your feature, and provide feedback, before starting to code 🙂
-
Do the changes in your own fork of the code
-
Do not commit changes to files that are irrelevant to your feature or bugfix (eg:
.gitignore
). -
Provide tests and documentation whenever possible.
-
Be sure you have followed the code style for the project.
-
Add a changelog entry
-
Sign the Contributor License Agreement
-
Open a GitHub Pull Request with your patches. (1 pull request = 1 feature or bug) We will review your contribution and respond as quickly as possible. Keep in mind that this is an open source project, and it may take us some time to get back to you. Your patience is very much appreciated.
-
Be willing to accept criticism and work on improving your code.
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub
Fork BPMN Visualization JS and create a branch with a descriptive name.
A good branch name would be (where issue #25 is the ticket you're working on): 25_add-annotations-to-tasks
git checkout -b 25_annotations-to-tasks
Note: information about the library internals are available in the documentation site
Node.js
>= 12.x (may work with older versions but without any guarantee)Typescript
3.xSupported OS
(see the Github Build workflow for more details): Windows/Linux/MacOs
npm install
Install the dependencies in the local node_modules foldernpm run watch
Watch files in bundle and rebuild on changes
You can now access the project on http://localhost:10001
npm run test
Run all testsnpm run coverage
Run all tests and the coveragenpm run e2e
Run all end-to-end tests
Your patch should follow the same conventions & pass the same code quality checks as the rest of the project.
Project, in major line, follows the code style suggested by airbnb which is explicit and well documented.
Typescript have been chosen as it's strongly typed and we believe it adds some syntactical benefits to the JavaScript language More information here: Typescript
To enforce best practices we use ESLint and husky.
The later performs eslint --fix
on pre-commit event to make sure that committed code meets standards.
ESLint configuration extends:
- plugin:@typescript-eslint/recommended
- prettier/@typescript-eslint
- plugin:prettier/recommended
DISCLAIMER:
- the documentation sources are in the AsciiDoctor format and are hosted in the docs folder. The display may not fully work (font-awesome icons and some links) depending on the rendering engine. This is the case when displayed directly on GitHub Web.
- the generation currently relies on
Docker
. This will change in the future.
From the root folder of the repository, run
./docs/build-doc.bash
The documentation is generated in the build/docs
folder.
To fully benefit the ESLint and Jest testing frameworks, you must properly set up your IDE.
ESLint (https://www.jetbrains.com/help/idea/eslint.html#)
Go to File
-> Settings
and type ESLint in search box
Enable ESLint by choosing Automatic ESLint configuration
If automatic configuration is not working for any reason try with Manual ESLint configuration
, specify:
- ESLint package to point to
project\node_modules\eslint
- Configuration file must point to
project\.eslintrc.js
You also need to set up Coding Style rules
It is as simple as doing right-click
on the file .eslintrc.js
and choosing option Apply ESLint Code Style Rules
Jest tests (https://www.jetbrains.com/help/idea/running-unit-tests-on-jest.html)
To be able to run tests from IntelliJ, you must set up the default Jest template in Run/Debug Configurations
Adjust following parameters:
- Configuration files: it depends on the type of tests you want to run
- unit tests:
<project_dir>/jest.config.unit.js
- end to end tests:
<project_dir>/jest.config.e2e.js
- unit tests:
SonarLint
Additionally, it is advised to install SonarLint Plugin
It helps to avoid coding mistakes -> reduced technical debt
If your PR includes user-observable changes, you'll be asked to add a changelog entry following the existing changelog format.
The changelog format is the following:
-
One line per PR describing your fix or enhancement.
-
Entries end with a dot, followed by "[#pr-number] by [@github-username]".
-
Entries are added under the "Unreleased" section at the top of the file, under the "Bug Fixes" or "Enhancements" subsection.
-
References to github usernames and pull requests use [shortcut reference links].
-
Your github username reference definition is included in the correct alphabetical position at the bottom of the file.
Please make sure you have signed our Contributor License Agreement. We are not asking you to assign copyright to us, but to give us the right to distribute your code without restriction. We ask this of all contributors in order to assure our users of the origin and continuing existence of the code. You only need to sign the CLA once.
At this point, you should switch back to your master branch and make sure it's up to date with BPMN Visualization JS's master branch:
git remote add upstream git@github.com:process-analytics/bpmn-visualization-js.git
git checkout master
git pull upstream master
Then update your feature branch from your local copy of master, and push it!
git checkout 25_annotations-to-tasks
git rebase master
git push --set-upstream origin 25_annotations-to-tasks
Finally, go to GitHub and make a Pull Request with labels 😄
If a maintainer asks you to rebase your PR, they're saying that a lot of code has changed, and that you need to update your branch so it's easier to merge.
Here's the suggested workflow:
git checkout 25_annotations-to-tasks
git pull --rebase upstream master
git push --force-with-lease 25_annotations-to-tasks
At this point, you're ready to make your changes! Feel free to ask for help. Everyone is a beginner at first 😸
Although Linting, Sonar and Tests keeps the code in a good shape We strongly recommend you to read following resources to be able to write code that is conform to the best practices:
A PR can only be merged into master by a maintainer, if all of these conditions are met:
- It is passing CI.
- It has been approved by at least two maintainers. If it was a maintainer who opened the PR, only one extra approval is needed.
- It has no requested changes.
- It is up to date with current master.
Maintainers need to do the following to push out a release.
Milestone names are based on version
- Clean the opened milestone if some issues are still opened (move them to a new one or discard milestone from them)
- Close the milestone
- Clean the Day to Day Board: archive all cards
of the
Done
column related to the milestone
- Ensures you’re on master and don’t have local, un-commited changes:
git checkout master && git pull --tags
- Bumps the version number in package.json based on major, minor or patch (see https://docs.npmjs.com/cli/version, type:
[new-version | major | minor | patch]):
npm version [type] --message "[RELEASE] %s"
- Push to GitHub:
git push && git push --tags
- Ensure the latest closed milestone matches the name of the tag/version that has just been pushed
- Create a new GitHub release
- Open github releases
- Create a new release based on the newly created tags. Check
This is a pre-release
- In the description, at least add a link to the related milestone