如何更新到尚未正式发布的 Ionic 1.2?

How can I update to the not yet officially released Ionic 1.2?

Ionic 1.2 已发布: http://blog.ionic.io/announcing-ionic-1-2/

源代码可在此处获得: https://github.com/driftyco/ionic/releases/tag/v1.2.0

但是我无法使用我尝试过的一些 shell 命令进行安装:

$ bower install --save ionic#1.2.0
$ bower install https://github.com/driftyco/ionic/archive/v1.2.0.tar.gz
$ bower install driftyco/ionic-bower#v1.2.0 --force

我可以下载源代码,但不知道如何使用它来更新我的 ionic 框架

您可以使用 bower 安装它:

$ bower install ionic#1.2.0 --force

无论如何,您应该考虑到这只会下载库和源代码,而不是 CLI 工具。

所以在我看来,如果你想测试 ionic 1.2,你应该

  1. 创建一个离子项目(像往常一样)
  2. 执行bower install ionic#1.2.0 --force,以获得新的离子库
  3. 将你项目中www/lib/ionic/的内容替换为最近下载的bower_components/ionic/release/[=26=的内容].

DETAIL: Ionic uses to include a .bowerrc file that causes bower packages to be placed in www/lib, instead of inside bower_components, so maybe you'll simply need to replace the content of www/lib/ionic/ with www/lib/ionic/release (--force is need because www/lib/ionic already exists).