Common error handler library
npm install cm-libs-errorsThis repository serve as a library for common error handler.
1. Clone this repository.
2. Change directory to the repository.
3. Install package dependencies.
```
npm install
1. Write test cases in a *.test.ts file under the same folder with the actual module file. For example, module file src/error.ts, unit-test file src/error.test.ts.
2. Run unit-test command.
* To run single module unit-test.
``
npm run test-this src/error.test.ts
* To run all unit-test.
``
npm run test
Please use unit-test method for debugging.
1. Set breakpoint on the source code by pressing F9 key.
2. Run unit-test command with debugging.
``
npm run debug-this src/error.test.ts
3. Start debugging by pressing F5 key.
Write commit message that contains keyword
* run-release to publish patch version.run-prerelease` to publish prerelease version.
*