softlayer / sl-ember-components

An Ember CLI Addon that provides a variety of UI components.
http://softlayer.github.io/sl-ember-components
MIT License
114 stars 27 forks source link

Uncaught Error: Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3 #1681

Closed notmessenger closed 7 years ago

notmessenger commented 7 years ago

When using ember version 2.11.0+ (ember-cli version 2.11.0)

notmessenger commented 7 years ago

Upgrading bootstrap to 3.3.7 resolves this issue.

Need to update the dependency version in the blueprint - https://github.com/softlayer/sl-ember-components/blob/master/blueprints/sl-ember-components/index.js#L6

tinyweasel commented 7 years ago

I'm getting Uncaught Error: Could not find module ember-resolver imported from npm-test/resolver but my Bootstrap is 3.3.7. Any ideas?

notmessenger commented 7 years ago

@tinyweasel Is the version only changed in your bower.json file or have you done a bower install as well?

Whenever I run into these types of errors the first thing I do is run npm set progress=false && rm -rf node_modules && rm -rf bower_components && npm cache clean && bower cache clean && npm install && bower install as it will often clear such things up. If this problem still exists after this then we will have to dig into it further.

tinyweasel commented 7 years ago

I'd done all of that except npm set progress=false. I'm trying it again, I'll let you know if the problem persists.