JavaScript libraries for the SDP protocol.
Please make any changes in a feature branch and add a pull request. All changes should have relevant tests and documentation.
Tests can be run with pnpm run test
or the VSCode Test task.
Code formatting/style can be validated using:
pnpm codequality:check
And fixed using:
pnpm codequality:fix
To use a local version of this package in the frontend. You can build the package and then linking it:
pnpm build
Then in the frontend edit the package.json
to point to the local package:
"dependencies": {
"@overmindtech/sdp": "file:../sdp-js/dist"
}
The package is automatically released each time a tag is created, so to release just create a tag such as v1.23.6
and push that tag. This automatically triggers NPM publish etc.