Cos Callis
Cos Callis

Reputation: 5084

Bootstrap requires non-existing version of popper

My package.json contains:

 "dependencies": {
    "popper": "^1.0.1",
    "bootstrap": "^4.1.0",

on install the warning is:

[email protected] requires a peer of popper.js@^1.14.0

however the "latest" version of popper.js is 1.0.1

wtf?!? are there two different 'flavors' of popper?

Upvotes: 8

Views: 7522

Answers (1)

Klooven
Klooven

Reputation: 3926

You checked the wrong package. It is popper.js, not popper.

So, to install run:

npm install popper.js

Here's the package on npm.

Upvotes: 24

Related Questions