This project is bound by a Code of Conduct.
The simple steps of contributing to any GitHub project are as follows:
- Fork the repository
- Create your own branch:
We suggest to use this branch prefix name:
a. bugfixgit checkout -b bugfix/image-not-loaded
please use this prefix if you want to resolve some issues in our project
b. featuregit checkout -b feature/add-circle-images
please use this prefix if you want to add something new - Commit your changes:
git commit -am 'Add/Resolve some feature'
- Push to the branch:
git push -u origin <prefix>/<your branch name>
- Create a Pull Request!
To keep your fork of in sync with this repository, follow this guide.
For members of the BCC organisation, or if you have push access to this repository, just clone directly from the repo and push your branches here. It's fine.
- Git
- Node.js (10.0.0+)
- Yarn (1.x)
- Text Editor with EditorConfig & Prettier support. (We recommend Visual Studio Code)
In general, contributors should use Node v10 and Yarn v1.x
Run these commands inside the Terminal (PowerShell/Command Prompt for Windows).
Git: You should see the version number:
$ git version
git version 2.18.0
Node.js: You should see the version number:
Note that we use
.nvmrc
in the root of this repository, to runnvm use
automatically please kindly follow this documentation
$ node -v
v10.17.0
Yarn: You should see the version number:
$ yarn -v
1.9.4
First, you should clone the repository that you forked.
$ git clone https://github.com/
For example:
$ git clone https://github.com/
After this repository has been cloned, cd
into the repository:
$ cd design-system
Install the project's dependencies. Note that we use Yarn, not npm:
$ yarn