terminal - Bower: Install 2 versions of jQuery -


how go installing 2 versions of jquery using bower? want have v2.0 1.9.1 browser support fallback

the issue i'm having if run bower install jquery#1.9.1 jquery#2.0.0 first version gets overwritten second because same component

in dependencies part of bower.json can have this:

"dependencies": {     "jquery": "2.0.0",     "jquery-1.9.1": "http://code.jquery.com/jquery-1.9.1.js" } 

one shouldn't have this, have maintain / migrate existing website (for whatever reason) uses different versions of jquery in different pages!


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -