默认模板项目的离子和角度更新

时间:2015-10-30 12:28:38

标签: angularjs npm ionic-framework ionic

我是Ionic的新手,在尝试安装最新的Ionic版本时有点迷失。 根据官方网站ionicframework.com:最新的是1.1.0 但是npm已经提供1.7.7(www.npmjs.com/package/ionic)。 在尝试创建示例项目Ranges时,我可以使用离子1.1.0和角度1.4.3克隆回购。 我已经知道如何使用Public Sub DeleteAdjacent() Dim ws As Worksheet Dim valueGroupMap As Collection Dim groupRanges As Collection Dim values As Collection Dim lastRow As Long Dim groupRng As Range Dim valueCell As Range Dim groupCell As Range Dim rng As Range Dim v As Variant Dim r As Long 'Read the Column A worksheet Set ws = Workbooks("Workbook1.xlsx").Worksheets("Sheet A") lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row + 1 '+1 to get a blank row at end 'Define the value map group ranges Set valueGroupMap = New Collection Set groupRanges = New Collection Set groupRng = ws.Cells(1, "N") For r = 1 To lastRow Set valueCell = ws.Cells(r, "A") Set groupCell = ws.Cells(r, "N") If Len(CStr(groupCell.Value2)) = 0 Then 'We've reached the end of a group Set rng = ws.Range(groupRng, groupCell.Offset(-1)) groupRanges.Add rng, CStr(groupRng.Value2) Set groupRng = Nothing Else 'We're working within a group If groupRng Is Nothing Then Set groupRng = groupCell End If 'Create the value to group map Set values = Nothing On Error Resume Next Set values = valueGroupMap(CStr(valueCell.Value2)) On Error GoTo 0 If values Is Nothing Then Set values = New Collection valueGroupMap.Add values, CStr(valueCell.Value2) End If values.Add CStr(groupRng.Value2) End If Next 'Read the Column C worksheet Set ws = Workbooks("Workbook2.xlsx").Worksheets("Sheet B") lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row On Error Resume Next For r = 1 To lastRow 'Check if we have the value Set values = Nothing Set values = valueGroupMap(CStr(ws.Cells(r, "C").Value2)) If Not values Is Nothing Then 'We do, so remove the group ranges from our list For Each v In values groupRanges.Remove CStr(v) Next End If Next On Error GoTo 0 'Create a range of the groups still remaining in the list Set rng = Nothing For Each groupRng In groupRanges If rng Is Nothing Then Set rng = groupRng Else Set rng = Union(rng, groupRng) End If Next 'Delete that range rng.EntireRow.Delete End Sub 全局安装离子1.7.7。还尝试了ionic start myApp sidemenu,但我得到的是1.1.0,我已经安装了模板项目 所以我的问题是 - 为什么版本与官方版本不同?npm如何将默认项目升级到最新的离子和角度版本(1.4.9)?

1 个答案:

答案 0 :(得分:0)

要安装任何npm软件包的最新版本, 打开package.json文件和依赖项版本

例如。 typescript:v1使用typescript:*表示最新更新。

{ "dependencies" : { "typescript" : "*" } }

我认为npm只给出稳定版本。如果没有明确要求。