|
|
|
const Plugins = [
|
|
|
|
// jQuery
|
|
|
|
{
|
|
|
|
from: 'node_modules/jquery/dist',
|
|
|
|
to : 'plugins/jquery'
|
|
|
|
},
|
|
|
|
// Popper
|
|
|
|
{
|
|
|
|
from: 'node_modules/popper.js/dist',
|
|
|
|
to : 'plugins/popper'
|
|
|
|
},
|
|
|
|
// Bootstrap
|
|
|
|
{
|
|
|
|
from: 'node_modules/bootstrap/dist/js',
|
|
|
|
to : 'plugins/bootstrap/js'
|
|
|
|
},
|
|
|
|
// Font Awesome
|
|
|
|
{
|
|
|
|
from: 'node_modules/@fortawesome/fontawesome-free/css',
|
|
|
|
to : 'plugins/fontawesome-free/css'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/@fortawesome/fontawesome-free/webfonts',
|
|
|
|
to : 'plugins/fontawesome-free/webfonts'
|
|
|
|
},
|
|
|
|
// overlayScrollbars
|
|
|
|
{
|
|
|
|
from: 'node_modules/overlayscrollbars/js',
|
|
|
|
to : 'plugins/overlayScrollbars/js'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/overlayscrollbars/css',
|
|
|
|
to : 'plugins/overlayScrollbars/css'
|
|
|
|
},
|
|
|
|
// Chart.js
|
|
|
|
{
|
|
|
|
from: 'node_modules/chart.js/dist/',
|
|
|
|
to : 'plugins/chart.js'
|
|
|
|
},
|
|
|
|
// Summernote
|
|
|
|
{
|
|
|
|
from: 'node_modules/summernote/dist/',
|
|
|
|
to : 'plugins/summernote'
|
|
|
|
},
|
|
|
|
// Bootstrap Slider
|
|
|
|
{
|
|
|
|
from: 'node_modules/bootstrap-slider/dist/',
|
|
|
|
to : 'plugins/bootstrap-slider'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/bootstrap-slider/dist/css',
|
|
|
|
to : 'plugins/bootstrap-slider/css'
|
|
|
|
},
|
|
|
|
// Bootstrap Colorpicker
|
|
|
|
{
|
|
|
|
from: 'node_modules/bootstrap-colorpicker/dist/js',
|
|
|
|
to : 'plugins/bootstrap-colorpicker/js'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/bootstrap-colorpicker/dist/css',
|
|
|
|
to : 'plugins/bootstrap-colorpicker/css'
|
|
|
|
},
|
|
|
|
// Tempusdominus Bootstrap 4
|
|
|
|
{
|
|
|
|
from: 'node_modules/tempusdominus-bootstrap-4/build/js',
|
|
|
|
to : 'plugins/tempusdominus-bootstrap-4/js'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/tempusdominus-bootstrap-4/build/css',
|
|
|
|
to : 'plugins/tempusdominus-bootstrap-4/css'
|
|
|
|
},
|
|
|
|
// Moment
|
|
|
|
{
|
|
|
|
from: 'node_modules/moment/min',
|
|
|
|
to : 'plugins/moment'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/moment/locale',
|
|
|
|
to : 'plugins/moment/locale'
|
|
|
|
},
|
|
|
|
// FastClick
|
|
|
|
{
|
|
|
|
from: 'node_modules/fastclick/lib',
|
|
|
|
to : 'plugins/fastclick'
|
|
|
|
},
|
|
|
|
|
|
|
|
// DataTables
|
|
|
|
{
|
|
|
|
from: 'node_modules/datatables.net/js',
|
|
|
|
to: 'plugins/datatables'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/datatables.net-bs4/js',
|
|
|
|
to: 'plugins/datatables'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/datatables.net-bs4/css',
|
|
|
|
to: 'plugins/datatables'
|
|
|
|
},
|
|
|
|
|
|
|
|
// // Doc Assets
|
|
|
|
// // AdminLTE Dist
|
|
|
|
// {
|
|
|
|
// from: 'dist/css',
|
|
|
|
// to : 'docs/assets/css'
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// from: 'dist/js',
|
|
|
|
// to : 'docs/assets/js'
|
|
|
|
// },
|
|
|
|
// // jQuery
|
|
|
|
// {
|
|
|
|
// from: 'node_modules/jquery/dist',
|
|
|
|
// to : 'docs/assets/plugins/jquery'
|
|
|
|
// },
|
|
|
|
// // Popper
|
|
|
|
// {
|
|
|
|
// from: 'node_modules/popper.js/dist',
|
|
|
|
// to : 'docs/assets/plugins/popper'
|
|
|
|
// },
|
|
|
|
// // Bootstrap
|
|
|
|
// {
|
|
|
|
// from: 'node_modules/bootstrap/dist/js',
|
|
|
|
// to : 'docs/assets/plugins/bootstrap/js'
|
|
|
|
// },
|
|
|
|
// // Font Awesome
|
|
|
|
// {
|
|
|
|
// from: 'node_modules/@fortawesome/fontawesome-free/css',
|
|
|
|
// to : 'docs/assets/plugins/fontawesome-free/css'
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// from: 'node_modules/@fortawesome/fontawesome-free/webfonts',
|
|
|
|
// to : 'docs/assets/plugins/fontawesome-free/webfonts'
|
|
|
|
// },
|
|
|
|
// // overlayScrollbars
|
|
|
|
// {
|
|
|
|
// from: 'plugins/overlayScrollbars/js',
|
|
|
|
// to : 'docs/assets/plugins/overlayScrollbars/js'
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// from: 'plugins/overlayScrollbars/css',
|
|
|
|
// to : 'docs/assets/plugins/overlayScrollbars/css'
|
|
|
|
// }
|
|
|
|
]
|
|
|
|
|
|
|
|
module.exports = Plugins
|