如何获得ionic framework的版本?
我不知道如何检查离子版本。 如果我做ionic -v
我回来1.4.3
那可以吗? 是不是1.0.0刚刚发布?
这是Ionic CLI的版本号,与Ionic图书馆的版本号不同。 这里有几个简单的方法来检查版本。
在浏览器控制台中,您可以运行ionic.version
并将它打印到控制台的版本是什么。
您也可以在应用程序中查看bower.json
文件,它将显示您在此处看到的版本号。 https://github.com/ionic-in-action/chapter5/blob/master/bower.json#L5
从您的项目文件夹运行:
$ ionic info Cordova CLI: 5.0.0 Ionic Version: 1.0.1 Ionic CLI Version: 1.6.1 Ionic App Lib Version: 0.3.3 OS: Windows 7 SP1 Node Version: v0.12.2
如果你的CLI足够大,它会说“信息不是一个有效的任务”,你可以使用这个:
$ ionic lib Local Ionic version: 1.0.1 (C:\stuff\july21app\www\lib\ionic\version.json) Latest Ionic version: 1.0.1 (released 2015-06-30) * Local version up to date
在terminal下面的命令返回版本:
'ionic version' or 'ionic -v'
回
'3.2.0'
当我运行$ ionic info
和$ionic lib
时,我得到以下输出
_ _ (_) (_) _ ___ _ __ _ ___ | |/ _ \| '_ \| |/ __| | | (_) | | | | | (__ |_|\___/|_| |_|_|\___| Usage: ionic task args =============== Available tasks: start - Start a new Ionic project with the given name. emulate - Emulate an ionic project on a simulator or emulator. run - Run an ionic project on a connected device. build - Locally build an ionic project for a given platform platform - Configure platform targets for building an Ionic app
在某个时间点,物体由ionic
变成大写Ionic
。
截至2017年7月,您需要将Ionic.version
放入您的控制台以获取版本号。
ionic
对象上的方法version
以string
格式返回当前版本。