Please provide a (simple) way to reproduce the problem. A bug that can not be reproduced is less likely to be solved.
Please also include the reasoning for the desired feature and not just its description. Sometimes it is obvious, but other times a few sample use cases or an explanation can come in handy.
There are two types of code contributions.
This is probably the easiest way to contribute as it does not require any knowledge of chevrotain's internals. And each contribution is self-contained and limited in scope.
Sample Grammars contributions are particularly encouraged.
See some existing examples to get started.
Details:
- An Example must include some tests with a _spec.js suffix.
This can be more complex as more in-depth knowledge of Chevrotain internals may be needed.
Details:
- ~100% test coverage is required.
- It is possible to disable coverage for specific code, but there must be a very good reason to do so.
Chevrotain is developed as a mono-repo with a single (temporary state) productive package and multiple example packages.
Chevrotain uses npm tasks for the development flows. and pnpm + lerna for the monorepo management.
In the root of this Repo:
pnpm
Chevrotain is written using Typescript, so compilation to JavaScript is needed.
pnpm compile
Alternatively during development one would want to recompile on file changes.
pnpm compile:watch
The compilation result will appear in the lib folder in each sub-package.
Chevrotain uses prettier to avoid caring about code formatting... To format your new code use:
pnpm format:fix
This is just another npm task which performs the whole flow including linting / doc generation / d.ts API creation / ...
pnpm ci
This project enforces consistent commit message format same as in the Angular project.
it is recommended to use git cz
CLI tool to create these conventional commit messages.
- requires commitizen to be installed.
The release process requires push permissions to master.
-
Update the CHANGELOG.
- The header must be
## X.Y.Z (INSERT_DATE_HERE)
(literally).
- The header must be
-
Update the BREAKING_CHANGES.md.
- Only for major versions...
-
Push the changes related updates to master.
-
execute
pnpm release:version
and follow the instructions.- This will update version related files and push a new version tag to Github.
- Github Actions will execute a deployment to npmjs.com due to this new tag.
- Additionally, new website contents will be pushed to the gh-pages branch.
-
Check that the release was successful.
- On Github Actions release build
- On npmjs.com
- On The website
- On The APIs webpage
- The URL being redirected to should include the latest version number.
All Contributors must sign the CLA. The process is completely automated using https://cla-assistant.io/ simply follow the instructions in the pull request.