We want to encourage the developer community to contribute to Sa11y. This guide has instructions to install, build, test and contribute to the framework. Adapted from salesforce/lwc.
- Quick start
- Requirements
- Installation
- Building
- Testing
- Release
- Editor Configurations
- Git Workflow
Before you start, it helps to be familiar with Web Accessibility
yarn install
to install dependencies- Make changes while building, testing and linting the changed files
yarn build:watch
yarn test:watch
yarn lint:watch
- Update changelog with
yarn release:changelog
- Stage changes in git and do
yarn commit
to check staged changes and commit them with a formatted commit message - Push changes to feature branch
Set up SSH access to Github if you haven't done so already.
git clone [email protected]:salesforce/sa11y.git
We use yarn because it is significantly faster than npm for our use case. See this command cheat-sheet.
yarn install
- Have to do this every time there are changes to
package.json
from external sources e.g. after switching branches or after merging/rebasing - If this fails with an error about UNABLE_TO_GET_ISSUER_CERT_LOCALLY, Error: unable to get local issuer certificate, or a registry communication issue then re-verify that step 2 was successful.
When developing typescript compiler can be invoked using the build
target.
With :watch
the compiler would watch for changes and incrementally compile changed sources as required.
yarn build[:watch]
When developing, utilize jest unit testing to provide test coverage for new functionality. To run the jest tests use the following command from the root directory:
yarn test
Additionally, the testing can be started in watch
mode which allows for automatic test re-runs on a save:
yarn test:watch
To execute a particular test, use the following command:
yarn test <path_to_test>
If you want to debug these tests, you can do as follows:
- First, insert a new line in your test where you think it might be failing and type
debugger
. This will serve as a break point for the debugger to stop at. - Open up Chrome and type in the address bar:
chrome://inspect
- Click on "Open dedicated DevTools for Node"
- In your terminal, type the following command:
yarn test:debug <path_to_test>
Your test should now be running in the Chrome debugger. You get your handy console to poke around all sorts of stuff! Now simply hit "Enter" in the terminal running your Jest process anytime you want to re-run your currently selected specs. You'll be dropped right back into the Chrome debugger.
- Generate Changelog
yarn release:changelog
- Cleanup
CHANGELOG
to remove references to squashed commits and replace them with references to corresponding PRs where possible
yarn release:version
to bump versions interactivelyyarn release:version:auto
to automatically determine version bump based on commits
- To publish packages to npm
npm login
yarn release:publish
- Create a release in github
- Bump
version
in rootpackage.json
to reflect the changes to the packages since last release- Use that root
version
for the github release
- Use that root
- Add release notes to reflect Changelog since last release
- Bump
- If you couldn't make these changes in the last PR that went into master, you can make a separate PR for release
- Create a
release
branch frommaster
- Commit changes to versions, changelog
- Changes should be limited to non-source code changes (docs, config)
- Push the
release
branch and create a pull request againstmaster
- with PR title of the format
chore(release): ...
- with PR title of the format
- Create a
- Use verdaccio to spin-up a local npm registry
- Packages can be published to it by overriding the
registry
option- e.g.
yarn release:publish --registry http://localhost:4873/
- e.g.
Configuring your editor to use our lint and code style rules will make the code review process delightful!
This project relies on type annotations.
- Make sure your editor supports typescript.
Configure your editor to use our eslint configurations.
The process of submitting a pull request is fairly straightforward and generally follows the same pattern each time:
- Fork the repo
- Create a feature branch
- Make your changes
- Rebase
- Check your submission
- Create a pull request
- Update the pull request
- Commit Message Guidelines
Fork the salesforce/sa11y repo. Clone your fork in your local workspace and configure your remote repository settings.
git clone [email protected]:<YOUR-USERNAME>/sa11y.git
cd sa11y
git remote add upstream [email protected]:salesforce/sa11y.git
git checkout master
git pull origin master
git checkout -b <name-of-the-feature>
Modify the files, build, test, lint and eventually commit your code using the following command:
git add <path/to/file/to/commit>
yarn commit or git commit
git push origin <name-of-the-feature>
Commit your changes using a descriptive commit message that follows our Commit Message Guidelines. Adherence to these conventions is necessary because release notes are automatically generated from these messages. NOTE: optional use of yarn commit command triggers interactive semantic commit, which prompts user with commit related questions, such as commit type, scope, description, and breaking changes. Use of yarn commit is optional but recommended to ensure format consistency.
The above commands will commit the files into your feature branch. You can keep pushing new changes into the same branch until you are ready to create a pull request.
Sometimes your feature branch will get stale with respect to the master branch, and it will require a rebase. The following steps can help:
git checkout master
git pull upstream master
git checkout <name-of-the-feature>
git rebase upstream/master
note: If no conflicts arise, these commands will ensure that your changes are applied on top of the master branch. Any conflicts will have to be manually resolved.
yarn run lint
The above command may display lint issues that are unrelated to your changes. The recommended way to avoid lint issues is to configure your editor to warn you in real time as you edit the file.
Fixing all existing lint issues is a tedious task so please pitch in by fixing the ones related to the files you make changes to!
Test your change by running the unit tests and integration tests. Instructions here.
Optionally test any changes to CI config locally by using the CircleCI local CLI
circleci config validate
circleci local execute --job build_and_test
If you've never created a pull request before, follow these instructions. Pull request samples can be found here.
A pull request title follows conventional commit format and is automatically validated by our CI.
ex:
commit-type(optional scope): commit description. ( NOTE: space between column and the message )
Types: build, chore, ci, docs, feat, fix, perf, refactor, revert, style, test, proposal.
Scope: The scope should be the name of the npm package affected (preset-rules, assert, jest, format etc.)
git fetch origin
git rebase origin/${base_branch}
# If there were no merge conflicts in the rebase
git push origin ${feature_branch}
# If there was a merge conflict that was resolved
git push origin ${feature_branch} --force
note: If more changes are needed as part of the pull request, just keep committing and pushing your feature branch as described above, and the pull request will automatically update.
Git commit messages have to be formatted according to a well-defined set of rules. This leads to more readable messages that are easy to follow when looking through the project history.
Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope, and a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
The header is mandatory, and the scope of the header is optional.
Any line of the commit message cannot be longer 100 characters! This allows the message to be easier to read on GitHub as well as in various git tools.
Footer should contain a closing reference to an issue if any.
Samples: (even more samples)
docs(changelog): update change log to beta.5
fix(release): need to depend on latest rxjs and zone.js
The version in our package.json gets copied to the one we publish, and users need the latest of these.
If the commit reverts a previous commit, it should begin with revert:
, followed by the header of the reverted commit. In the body it should say: This reverts commit <hash>.
, where the hash is the SHA of the commit being reverted.
Must be one of the following:
- build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
- chore: Other changes that don't modify src or test files
- ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
- docs: Documentation only changes
- feat: A new feature
- fix: A bug fix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- revert: Reverts a previous commit
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- test: Adding missing tests or correcting existing tests
The scope should be the name of the npm package affected, as perceived by the person reading the changelog.
There are currently a few exceptions to the "use package name" rule:
- root: used for changes that change the npm package layout in all of our packages, e.g. public path changes, package.json changes done to all packages, d.ts file/format changes, changes to bundles, etc.
The subject contains a succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize first letter
- no dot (.) at the end
Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit closes.
Breaking Changes should start with the word BREAKING CHANGE:
with a space or two newlines. The rest of the commit message is then used for this.