-
-
Notifications
You must be signed in to change notification settings - Fork 198
Closed
Description
In node-package-manager.ts#L158 the assumption is made that the installed platform package is always the first entry in the list of returned updated dependencies. In my setup I install a couple of file:... dependencies which are listed in the same place:
[
{
"action": "update",
"name": "nativescript-adobe-marketing-cloud",
"version": "file:nativescript-adobe-marketing-cloud-1.3.1.tgz",
"path": "...",
"previousVersion": ""
},
{
"action": "update",
"name": "nativescript-angular",
"version": "file:nativescript-angular-3.1.3.tgz",
"path": "...",
"previousVersion": ""
},
{
"action": "update",
"name": "nativescript-google-maps-sdk",
"version": "file:nativescript-google-maps-sdk-2.3.1.tgz",
"path": "...",
"previousVersion": ""
},
{
"action": "update",
"name": "nativescript-image-swipe",
"version": "file:nativescript-image-swipe-2.0.3.tgz",
"path": "...",
"previousVersion": ""
},
{
"action": "update",
"name": "tns-android",
"version": "3.1.1",
"path": "...",
"previousVersion": "3.1.1"
}
]
And tns-android in that case it the last entry.
dnadoba