To use and debug package locally you don't need publish it to NPM registry:
$ cd <package-location>
$ npm install && npm run build && npm linkAfter that you have to create symlink to your package in your project folder:
$ cd <project-location>
$ npm link @snyk/code-clientTest variables:
SNYK_API_HOSTis the API server host (by default: https://deeproxy.dev.snyk.io)SNYK_API_KEYis a sessionToken of a user with access to the Snyk
$ cd <package-location>
$ SNYK_API_HOST=... SNYK_API_KEY=... npm run testNote: the legacy authentication helpers exported by @snyk/code-client are kept for compatibility, but they are not part of the test suite and are not used by current internal consumers.
Make sure you checked documentation about semantic release prefixes
For example, to make a major version your message must follow this format:
feat: <short message>
BREAKING CHANGE: <longer description>
No need to do anything else. We have CircleCI CI/CD pipeline with automatic semantic versioning.