Skip to content

Missing peer dependency "babel-core"

Phyks requested to merge phyks/kresus:package.json into master

When running npm install from scratch, we get a warning in the console:

warning " > babel-loader@7.1.2" has unmet peer dependency "babel-core@6 || 7 || ^7.0.0-alpha || ^7.0.0-beta || ^7.0.0-rc".

This is due to the package.json having a babel-loader entry, but not a babel-core one. This MR adds this later dependency.

It is just a warning (and everything is working) at the moment because babel-loader is already installed as a dependency for other modules, but I think it would be cleaner to have it explicitly, no?

Merge request reports