Skip to content

Instantly share code, notes, and snippets.

@solrevdev
Created February 27, 2020 11:04
Show Gist options
  • Save solrevdev/ce32fcf4462f03247e019e48dd2e55f0 to your computer and use it in GitHub Desktop.
Save solrevdev/ce32fcf4462f03247e019e48dd2e55f0 to your computer and use it in GitHub Desktop.
a working example of libman.json
{
"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