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 stable in latest. ``` bash $ npm view ember-cli dist-tags { latest: '2.8.0', beta: '2.9.0-beta.2' } ``` Could we avoid doing that since it makes it hard for dependency checkers to figure out what's the latest stable: https://github.com/tjunnone/npm-check-updates/issues/285#issuecomment-253027858
Hello!
ember-cli-release seems to publish beta releases to npm under latest:
$ npm view ember-cli-release dist-tags { latest: '1.0.0-beta.2', zero: '0.2.9' }For contrast ember-cli keeps the stable in latest.
$ npm view ember-cli dist-tags { latest: '2.8.0', beta: '2.9.0-beta.2' }Could we avoid doing that since it makes it hard for dependency checkers to figure out what's the latest stable:
raineorshine/npm-check-updates#285 (comment)