release-it icon indicating copy to clipboard operation
release-it copied to clipboard

🚀 Automate versioning and package publishing

Results 110 release-it issues
Sort by recently updated
recently updated
newest added

After much debugging, I've managed to make release-it work on my Nx monorepo. I'm trying to run it to release just one of my packages. Here is my `.release-it.js` contents...

I tried to run `npx release-it --'hooks.after:release="echo ${changelog} > ./partial.md"'` and partial.md didn't get created. I then tried to run release-it without any commits, and it worked for single line...

I think the issue is that github.releaseNotes runs before the new tag is created. I can't find an auto-changelog set up to make this work. Say you have v0.6.6 and...

I have a script that creates a build artifact. I need to know the future version number to include in the artifact name. When I run `release({ 'release-version': true, increment:...

I am trying to achieve the following: - Monorepo - packages/gen - packages/icons - packages/web The icon package, only has an empty _package.json_ file. When the **_package/gen_** runs, it generates...

In this section it mentions that I can use `after:git:release` to execute a custom git push. https://github.com/release-it/release-it/blob/c2230713ddaa4adce2b586a241c16e7e69fe8936/docs/git.md#further-customizations ``` { "git": { "push": false }, "hooks": { "after:git:release": "git push origin...

Hi everyone, just having some confusion about how release-it is calculating the next version number. This is the release-it.json file: ```json { "git": { "commitMessage": "chore: release v${version}", "changelog": "npx...

Hello everyone, I have configured this package for a new project, however I noticed that the alpha and beta releases no longer work as before. Before: ```bash 1.0.0-alpha.0 # npm...

When I execute publish npm in the root directory, he throws an exception ``` ERROR User xxxx is not a collaborator for release-it-test. Documentation: https://git.io/release-it-npm ``` Apparently the error is...

I have a new app with a new Gitlab repo and I would like to use release-it, but every time it tries to create a Gitlab release, I get the...