Running a fresh install pops up a lot of npm deprecations, we should investigate where they come from and file issues with the relevant packages if needed.
npm WARN deprecated [email protected]: This package is discontinued. Use lodash.includes@^4.0.0.
npm WARN deprecated [email protected]: use uuid module instead
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
The warning about lodash.contains is coming from js-libp2p-websockets, and I've submitted a fix here: libp2p/js-libp2p-websockets#39
coveralls is responsible for one instance of the node-uuid warning, and I've submitted a fix for that here: nickmerwin/node-coveralls#148
I think the rest are coming from gulp due to its dependency on the very old version of vinyl-fs. There's a related gulp ticket to upgrade that here: gulpjs/gulp#1604
awesome @quaelin :D
Most helpful comment
The warning about
lodash.containsis coming fromjs-libp2p-websockets, and I've submitted a fix here: libp2p/js-libp2p-websockets#39coverallsis responsible for one instance of thenode-uuidwarning, and I've submitted a fix for that here: nickmerwin/node-coveralls#148I think the rest are coming from
gulpdue to its dependency on the very old version ofvinyl-fs. There's a related gulp ticket to upgrade that here: gulpjs/gulp#1604