c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
// Configure bundling and minification for the project.
|
|
// More info at https://go.microsoft.com/fwlink/?LinkId=808241
|
|
[
|
|
{
|
|
"outputFileName": "wwwroot/css/global.min.css",
|
|
// An array of relative input file paths. Globbing patterns supported
|
|
"inputFiles": [
|
|
"wwwroot/css/global.css",
|
|
"wwwroot/lib/chart.js/dist/Chart.min.css"
|
|
]
|
|
},
|
|
{
|
|
"outputFileName": "wwwroot/js/global.min.js",
|
|
"inputFiles": [
|
|
"wwwroot/lib/jquery/dist/jquery.js",
|
|
"wwwroot/lib/popper.js/dist/umd/popper.js",
|
|
"wwwroot/lib/moment.js/moment.min.js",
|
|
"wwwroot/lib/moment-timezone/moment-timezone.min.js",
|
|
"wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
|
|
"wwwroot/lib/canvas.js/canvasjs.js",
|
|
"wwwroot/lib/chart.js/dist/Chart.bundle.min.js",
|
|
"wwwroot/js/action.js",
|
|
"wwwroot/js/console.js",
|
|
"wwwroot/js/penalty.js",
|
|
"wwwroot/js/profile.js",
|
|
"wwwroot/js/server.js",
|
|
"wwwroot/js/search.js",
|
|
"wwwroot/js/loader.js",
|
|
"wwwroot/js/stats.js",
|
|
"wwwroot/js/configuration.js",
|
|
"wwwroot/js/advanced_stats.js"
|
|
],
|
|
// Optionally specify minification options
|
|
"minify": {
|
|
"enabled": true,
|
|
"renameLocals": true
|
|
},
|
|
// Optinally generate .map file
|
|
"sourceMap": false
|
|
}
|
|
]
|