I'm currently using semantic-release for versioning of my react library.
https://github.com/semantic-release/semantic-release
Question: Is it possible to generate the artifacts without publishing it?
For example, in my use case I would like to generate: - Version Release Number (@semantic-release/commit-analyzer) - tar file that will be publish to npm (@semantic-release/npm) - change log (@semantic-release/release-notes-generator)
If you run the dry run option, it will print the version release number and the change log to console, but I want to store it to a file. One workaround is I could pipe the results and then parse, but it'll be nice if it can pass the plugin could put the data in a file during the dry run.
The dry run won't run the publish stage which is where the files get tar'ed up.
Any Advice appreciated, Thanks, Derek