Created
February 27, 2020 11:04
-
-
Save solrevdev/ce32fcf4462f03247e019e48dd2e55f0 to your computer and use it in GitHub Desktop.
a working example of libman.json
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": [ | |
{ | |
"provider": "unpkg", | |
"library": "[email protected]", | |
"files": [ | |
"dist/css/bootstrap.css", | |
"dist/css/bootstrap.css.map", | |
"dist/css/bootstrap.min.css", | |
"dist/css/bootstrap.min.css.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/" | |
}, | |
{ | |
"library": "[email protected]", | |
"destination": "wwwroot/lib/bootstrap-colorpicker/dist" | |
}, | |
{ | |
"library": "[email protected]", | |
"files": ["jquery.min.js", "jquery.js", "jquery.min.map"], | |
"destination": "wwwroot/lib/jquery/dist/" | |
}, | |
{ | |
"library": "[email protected]", | |
"files": ["jquery.validate.js", "jquery.validate.min.js"], | |
"destination": "wwwroot/lib/jquery-validation/dist" | |
}, | |
{ | |
"library": "[email protected]", | |
"files": [ | |
"jquery.validate.unobtrusive.js", | |
"jquery.validate.unobtrusive.min.js" | |
], | |
"destination": "wwwroot/lib/jquery-validation-unobtrusive/" | |
}, | |
{ | |
"library": "[email protected]", | |
"files": ["lodash.js", "lodash.min.js"], | |
"destination": "wwwroot/lib/lodash/" | |
}, | |
{ | |
"library": "[email protected]", | |
"files": ["vue.js", "vue.min.js"], | |
"destination": "wwwroot/lib/vue/" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment