Lines Matching refs:ww
29 const outdated = rawOutdated.map(function (ww) { argument
31 dep: ww[0],
32 depname: ww[1],
33 current: ww[2],
34 wanted: ww[3],
35 latest: ww[4],
36 req: ww[5],
37 what: ww[1] + '@' + ww[3]
41 const wanted = outdated.filter(function (ww) { argument
42 if (ww.current === ww.wanted && ww.wanted !== ww.latest) {
45 'not updating', ww.depname,
49 return ww.current !== ww.wanted
56 wanted.forEach(function (ww) { argument
58 if (url.parse(ww.req).protocol) ww.what = ww.req
60 const where = (ww.dep.parent && ww.dep.parent.path) || ww.dep.path
61 const isTransitive = !(ww.dep.requiredBy || []).some((p) => p.isTop)
64 if (toInstall[key].what.indexOf(ww.what) === -1) toInstall[key].what.push(ww.what)