trouble in adding twbs:bootstrap into Meteor

C:\Users\HP\demo_app>meteor add twbs:bootstrap => Errors while adding packages:

While selecting package versions: error: Potentially incompatible change required to top-level dependency: jquery 1.11.11, was 3.0.0. Constraints on package "jquery": * [email protected] || 3.0.0 <- blaze 2.3.4 <- blaze-html-templates 1.1.2 * [email protected] <- twbs:bootstrap 3.3.6

To allow potentially incompatible changes to top-level dependencies, you must pass --allow-incompatible-update on the command line.

Upvotes: 1

Views: 809

Answers (1)

Jyoti Mate
Jyoti Mate

Reputation: 21

I got same error yesterday while adding bootstrap package to meteor. After research what I did was....

First,removed existing version of jquery....

meteor remove jquery 3.0.0

then,added old version of jquery...

meteor add [email protected]

then,added bootstrap...

meteor add twbs:bootstrap

This steps worked for me.You can try them.Please let me know if it works for you also. Thanks.

Upvotes: 2

Related Questions