ember-cli-release
ember-cli-release copied to clipboard
Ember CLI addon for versioned release management
Hello! ember-cli-release seems to publish beta releases to npm under latest: ``` bash $ npm view ember-cli-release dist-tags { latest: '1.0.0-beta.2', zero: '0.2.9' } ``` For contrast ember-cli keeps the...
Right now `ember release` seems to create the following undesirable situation:  You'll note that github adds them as releases but doesn't show the message or show that they...
I have this use case. ``` Latest version: v1.0.1 Succesfully committed changes 'Released v1.0.2' locally. [?] About to create tag 'v1.0.2' and push to remote 'origin', proceed?: No Aborted. ```...
Most of the time I run release command with `--prerelease`. It would be nice if I could set `prerelease: true` in `release.js`, so that the command uses `--prerelease` by default,...
``` ember release --prerelease beta ``` This should publish to npm with a `beta` tag ``` npm publish --tag beta ```
We have pre-push hook, which run tests before push. With regular push all works fine, but with `ember release` I got errors like ``` Latest version: v5.41.8 Successfully committed changes...
I don't know if this project is still active but it would be nice to be able to sign the tags created by ember release: - https://git-scm.com/book/uz/v2/Git-Tools-Signing-Your-Work#Signing-Tags I could provide...
Most of the time, the version that is in package.json reflects the latest tag. However this is not the case when creating releases off of stable branches, e.g. the package...