Hi! Thank you for taking the time to contribute to platform.sale!
In order to make the best use of both your time and that of the platform.sale maintainers, please follow the guidelines in this document.
There are 3 important branches to know about:
main
- the default branchnext
- a branch for commits which introduce new features which would go in the next SemVer minor release.dev
- a branch for commits which introduce breaking changes which would go in the next SemVer major release.
Bug fixes should go direct in the master
branch, from which new patch releases will be made regularly. Periodically the master branch will be merged into the minor
and major
branches.
If you would like to contribute a bugfix, please first create an issue detailing the bug, and indicate that you intend to fix it. When creating commits, please follow the commit message format below.
Again, please create a feature request detailing the functionality you intend to add, and state that you would like to implement it. When creating commits, please follow the commit message format below. New feature pull requests should be made against the minor
branch.
When adding new public APIs to support your new feature, add a @since 1.2.0
tag (where "1.2.0" corresponds to what will be the next minor version) to the doc block. This will let readers of the documentation know the version in which the API was introduced. See the docs readme for more details on the valid docs tags.
/**
* @description
* Sets the value of the new API thing.
*
* @since 1.2.0
*/
myNewApi: number;
This repo uses Conventional Commits.
type(scope): Message in present tense
type
may be one of:
- feat (new feature)
- fix (bug fix)
- docs (changes to documentation)
- perf (performance improvements)
- style (formatting, missing semi colons, etc; no code change)
- refactor (refactoring production code)
- test (adding missing tests, refactoring tests; no production code change)
- chore (updating build tasks etc; no production code change)
scope
indicates the package affected by the commit:
- admin-ui
- admin-ui-plugin
- asset-server-plugin
- common
- core
- create
- store-front
- email-plugin
- etc.
If a commit affects more than one package, separate them with a comma:
fix(core,common): Fix the thing
If a commit applies to no particular package (e.g. a tooling change in the root package.json), the scope can be omitted.
If your contribution includes any breaking changes (including any changes to the DB schema; backwards-incompatible changes to the GraphQL APIs or VendureConfig; backwards-incompatible changes to current behavior), please include a BREAKING CHANGE
section in your commit message as per the Conventional Commits specification.
Please also make your pull request against the major
branch rather than master
in the case of breaking changes.
Example:
feat(core): Add new field to Customer
Relates to #123. This commit adds the "foo" field to the Custom entity.
BREAKING CHANGE: A DB migration will be required in order to add the new "foo" field to the customer table.
Commit messages are linted on commit, so you'll know if your message is not quite right.
After cloning the Vendure repo, please follow the Development guide in the README for instructions on how to get up and running locally.
If you wish to contribute translations of the Admin UI into another language (or improve an existing set of translations), please see the Localization guide in the admin-ui package.