Status: help wanted
- Install required node packages:
npm ci
- Build data:
npm run build
- Run tests:
npm run test
- Serve:
npm run start
While working and making changes to the project, you can do all of this in one command:
npm run build && npm run test && npm run start
Once the project is running, it should be available at 'http://localhost:3000'
This project is built on express js, and all data lives in json files in the data
directory. These json files are processed during the build step and saved to the build
directory.
tech
- tech are different categories of technology (html, css, aria, svg, etc)feature
- features are specific features of a technology, such as elements, attributes, properties, etc.tests
- tests are specific test cases for a feature (or many features). Each feature should have at least one test that only tests that feature.
These files are essentially slimmed down versions of the full json files that are made during the build step. Only known information is filled out. The build step will add all unknown data points. The hope is that it will be easier to edit and maintain the these minimal files.
The task of accepting a support point is done by a project maintainer that has full access to the repository and is familiar with git and GitHub.
Users can run tests for specific AT/Browser combinations (support point) and post their findings to a github issue. These findings should be verified by another user before being added to the repository.
Once a support point is verified, it is ready to be added to the repository. There is a script at scripts/sync-support-point.js
that makes this a easy.
Run node scripts/sync-support-point.js --issue {issue number}
to update the appropriate json file with the results that were found. This will take the results in the issue body.
Run node scripts/sync-support-point.js --comment {comment id}
to accept the results in a comment ID. This might be needed if a difference was found during the verification step. You can get the comment ID from the URL that is generated when the time stamp is clicked for the specific comment on GitHub.
Now you just need to make sure that everything was synced correctly. If you think it is ready, commit the change and push to a new branch on Github.
- make sure you are on the right branch:
git checkout master
- make sure your clone is up to date:
git pull origin master
- build the project and test:
npm run build && npm run test
- (optional) manually verify that everything looks good
npm run start
- commit the changes:
git commit -m 'closes #{issue-number}'
- push the changes
git push origin master
- Ensure the code is up-to-date with what you want to be released (
git pull origin master
) git tag vX.Y.Z
where "vX.Y.Z" is the desired versiongit push origin master --follow-tags && npm publish