-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bower support, multiple jQuery versions #529
Conversation
Why bower? Would npm be enough? Sent from my iPhone
|
I'm pretty positive NPM doesn't have packaged versions for jQuery, QUnit or Zepto (at least properly maintained). And since NPM expects a package.json and CommonJS modules you can't just pull the repositories in (which would be nice in our case). Bower seems like the best choice (although it seems to be missing packages for proper Mootools, YUI and Dojo versions). |
Bower support, multiple jQuery versions
This pull request uses Bower to install Qunit, jQuery and Zepto and introduces a jQuery legacy (1.10) configuration (as mentioned in #526) and removes supported libraries from being checked directly into the repository.
bower install
will run as an NPM post-install script. Although this is considered to be an anti pattern this should be ok here as NPM is only used for development. Re-runnpm install
after updating from this PR to get the bower components.