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
* Whenever installing npm prints the information by reversing the tree of operations and because the initial dependency was installed last it is listed first.
* Describes problems that might have occurred during installation. For example missing peer dependencies.
174
205
*/
175
206
problems?: string[];
176
207
}
177
208
209
+
/**
210
+
* Describes information returned by the npm 5 CLI upon calling install with --json flag.
211
+
*/
212
+
interfaceINpm5InstallCliResult{
213
+
/**
214
+
* Added dependencies. Note that whenever add a particular dependency with npm 5 it is listed inside of array with key "Added".
215
+
* @type {INpmDependencyUpdateInfo[]}
216
+
*/
217
+
added: INpm5DependencyInfo[];
218
+
/**
219
+
* Removed dependencies. Note that whenever remove a particular dependency with npm 5 it is listed inside of array with key "removed".
220
+
* @type {INpmDependencyUpdateInfo[]}
221
+
*/
222
+
removed: INpm5DependencyInfo[];
223
+
/**
224
+
* Updated dependencies. Note that whenever update a particular dependency with npm 5 it is listed inside of array with key "updated".
225
+
* @type {INpmDependencyUpdateInfo[]}
226
+
*/
227
+
updated: INpm5DependencyInfo[];
228
+
/**
229
+
* Moved dependencies. Note that whenever move a particular dependency with npm 5 it is listed inside of array with key "moved".
230
+
* @type {INpmDependencyUpdateInfo[]}
231
+
*/
232
+
moved: INpm5DependencyInfo[];
233
+
/**
234
+
* Failed dependencies. Note that whenever use npm 5 and the operation over particular dependency fail it is listed inside of array with key "failed".
235
+
* @type {INpmDependencyUpdateInfo[]}
236
+
*/
237
+
failed: INpm5DependencyInfo[];
238
+
/**
239
+
* Warnings. Note that whenever use npm 5 and the operation over particular dependency have warnings they are listed inside of array with key "warnings".
0 commit comments