angularjs – 在现有项目中更新Ionic

前端之家收集整理的这篇文章主要介绍了angularjs – 在现有项目中更新Ionic前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很高兴看到Ionic的Release版本,但发现自己无法更新我现有的项目.这就是我做的.

>运行npm install -g ionic
>在App的根文件夹中打开bower.json(上面的www)
>你会在这里找到这样的东西:

{
  "name": "MyAppName","private": "true","devDependencies": {
    "ionic": "driftyco/ionic-bower#xxxxxxxx"
  }
}

>将其更改为此(基本上通过更改最后一行:

{
  "name": "MyAppName","devDependencies": {
    "ionic": "driftyco/ionic-bower#1.0.0-rc.1"
  }
}

>保存文件
>转到命令行并在App文件夹中运行它

bower update
ionic lib update

>运行ionic lib以检查版本号

希望能帮助别人抓挠他/她的头.

——编辑———

这篇文章涉及Windows O / S,因为我使用的是64位Windows 7.

我还有很多问题需要更新现有的离子项目.这就是我为解决这个问题所做的工作:

>从www / lib / ionic中删除bower.json
>从源项目执行ionic lib update.

此操作将要求确认,只需键入yes,您的项目将更新为最新版本.

原文链接:https://www.f2er.com/angularjs/142479.html

猜你在找的Angularjs相关文章