Author : MD TAREQ HASSAN
Documentation
- Github repo : https://github.com/aspnet/LibraryManager
libman.json
reference : https://github.com/aspnet/LibraryManager/wiki/libman.json-reference
libman json example
libman.json
{
"version": "1.0",
"defaultProvider": "cdnjs",
"defaultDestination": "wwwroot/",
"libraries": [
{
"library": "jquery@3.5.1",
"destination": "wwwroot/js",
"files": [
"jquery.min.js",
"jquery.min.map"
]
},
{
"library": "twitter-bootstrap@4.5.2",
"files": [
"css/bootstrap.min.css",
"js/bootstrap.bundle.min.js"
]
},
{
"library": "spinkit@2.0.1",
"destination": "wwwroot/css",
"files": [
"spinkit.min.css"
]
}
]
}