Created
January 31, 2020 11:58
-
-
Save solrevdev/59023acd7cce43f96ae2a3b9da826a8b to your computer and use it in GitHub Desktop.
upgrades bootstrap and jquery in asp.net core 3.1 with libman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "1.0", | |
"defaultProvider": "cdnjs", | |
"libraries": [ | |
{ | |
"library": "[email protected]", | |
"destination": "wwwroot/lib/font-awesome/" | |
}, | |
{ | |
"library": "[email protected]", | |
"files": [ | |
"jquery.min.js", | |
"jquery.js", | |
"jquery.min.map" | |
], | |
"destination": "wwwroot/lib/jquery/dist/" | |
}, | |
{ | |
"provider": "unpkg", | |
"library": "[email protected]", | |
"files": [ | |
"LICENSE", | |
"dist/css/bootstrap-grid.css", | |
"dist/css/bootstrap-grid.css.map", | |
"dist/css/bootstrap-grid.min.css", | |
"dist/css/bootstrap-grid.min.css.map", | |
"dist/css/bootstrap-reboot.css", | |
"dist/css/bootstrap-reboot.css.map", | |
"dist/css/bootstrap-reboot.min.css", | |
"dist/css/bootstrap-reboot.min.css.map", | |
"dist/css/bootstrap.css", | |
"dist/css/bootstrap.css.map", | |
"dist/css/bootstrap.min.css", | |
"dist/css/bootstrap.min.css.map", | |
"dist/js/bootstrap.bundle.js", | |
"dist/js/bootstrap.bundle.js.map", | |
"dist/js/bootstrap.bundle.min.js", | |
"dist/js/bootstrap.bundle.min.js.map", | |
"dist/js/bootstrap.js", | |
"dist/js/bootstrap.js.map", | |
"dist/js/bootstrap.min.js", | |
"dist/js/bootstrap.min.js.map" | |
], | |
"destination": "wwwroot/lib/bootstrap/" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment