This PR intents to fix how azk checks if it's in the latest version.
The original way was GETting https://api.github.com/repos/azukiapp/azk/tags, but with new tags, such as rc build tags, this is broken.
The new way checks the package.json file from the branch stable, which means the latest stable release available in fact.
This PR intents to fix how
azk
checks if it's in the latest version. The original way was GETting https://api.github.com/repos/azukiapp/azk/tags, but with new tags, such asrc
build tags, this is broken. The new way checks thepackage.json
file from the branchstable
, which means the latest stable release available in fact.