You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added dependencies. Note that whenever add a particular dependency with npm 5 it is listed inside of array with key "Added".
347
-
* @type {INpmDependencyUpdateInfo[]}
352
+
* @type {INpm5DependencyInfo[]}
348
353
*/
349
354
added: INpm5DependencyInfo[];
350
355
/**
351
356
* Removed dependencies. Note that whenever remove a particular dependency with npm 5 it is listed inside of array with key "removed".
352
-
* @type {INpmDependencyUpdateInfo[]}
357
+
* @type {INpm5DependencyInfo[]}
353
358
*/
354
359
removed: INpm5DependencyInfo[];
355
360
/**
356
361
* Updated dependencies. Note that whenever update a particular dependency with npm 5 it is listed inside of array with key "updated".
357
-
* @type {INpmDependencyUpdateInfo[]}
362
+
* @type {INpm5DependencyInfo[]}
358
363
*/
359
364
updated: INpm5DependencyInfo[];
360
365
/**
361
366
* Moved dependencies. Note that whenever move a particular dependency with npm 5 it is listed inside of array with key "moved".
362
-
* @type {INpmDependencyUpdateInfo[]}
367
+
* @type {INpm5DependencyInfo[]}
363
368
*/
364
369
moved: INpm5DependencyInfo[];
365
370
/**
366
371
* Failed dependencies. Note that whenever use npm 5 and the operation over particular dependency fail it is listed inside of array with key "failed".
367
-
* @type {INpmDependencyUpdateInfo[]}
372
+
* @type {INpm5DependencyInfo[]}
368
373
*/
369
374
failed: INpm5DependencyInfo[];
370
375
/**
371
376
* Warnings. Note that whenever use npm 5 and the operation over particular dependency have warnings they are listed inside of array with key "warnings".
* In case when minSupportedVersion is provided, gets the current version of @nativescript/webpack from package.json and compares with the provided version.
1056
+
* @param {IProjectData} projectData
1049
1057
* @param {string} minSupportedVersion the minimum supported version of @nativescript/webpack
0 commit comments