cm-schema-event
v1.0.51
Published
Common event schema registry
Downloads
234
Readme
Common Schema Event
Getting Started
This repository serve as a common event schema registry.
How to setup environment?
Clone this repository.
Change directory to the repository.
Install package dependencies.
npm install
How to run unit-test?
Write test cases in a
*.test.ts
file under the same folder with the actual module file. For example, module filesrc/event.ts
, unit-test filesrc/event.test.ts
.Run unit-test command.
To run single module unit-test.
npm run test-this src/event.test.ts
To run all unit-test.
npm run test
How to debug?
Please use unit-test method for debugging.
Set breakpoint on the source code by pressing
F9
key.Run unit-test command with debugging.
npm run debug-this src/event.test.ts
Start debugging by pressing
F5
key.
How to release version?
Write commit message that contains keyword
run-release
to publish patch version.run-prerelease
to publish prerelease version.