2018-02-03 23:45:19 +00:00
|
|
|
const Plugins = [
|
|
|
|
// jQuery
|
|
|
|
{
|
|
|
|
from: 'node_modules/jquery/dist',
|
2018-04-01 17:35:02 +00:00
|
|
|
to : 'plugins/jquery'
|
2018-02-03 23:45:19 +00:00
|
|
|
},
|
|
|
|
// Popper
|
|
|
|
{
|
|
|
|
from: 'node_modules/popper.js/dist',
|
2018-04-01 17:35:02 +00:00
|
|
|
to : 'plugins/popper'
|
2018-02-03 23:45:19 +00:00
|
|
|
},
|
|
|
|
// Bootstrap
|
|
|
|
{
|
|
|
|
from: 'node_modules/bootstrap/dist',
|
2018-04-01 17:35:02 +00:00
|
|
|
to : 'plugins/bootstrap'
|
2018-02-03 23:45:19 +00:00
|
|
|
},
|
|
|
|
// Font Awesome
|
|
|
|
{
|
2019-05-25 12:36:36 +00:00
|
|
|
from: 'node_modules/@fortawesome/fontawesome-free/css',
|
|
|
|
to : 'plugins/fontawesome-free/css'
|
2018-02-03 23:45:19 +00:00
|
|
|
},
|
|
|
|
{
|
2019-05-25 12:36:36 +00:00
|
|
|
from: 'node_modules/@fortawesome/fontawesome-free/webfonts',
|
|
|
|
to : 'plugins/fontawesome-free/webfonts'
|
2018-03-17 17:07:55 +00:00
|
|
|
},
|
|
|
|
// Chart.js 2
|
|
|
|
{
|
|
|
|
from: 'node_modules/chart.js/dist/',
|
2018-04-01 17:35:02 +00:00
|
|
|
to : 'plugins/chart.js'
|
|
|
|
},
|
|
|
|
// CKEditor
|
|
|
|
{
|
2018-05-05 21:47:50 +00:00
|
|
|
from: 'node_modules/@ckeditor/ckeditor5-build-classic/build/',
|
2018-04-01 17:35:02 +00:00
|
|
|
to : 'plugins/ckeditor'
|
2018-05-05 21:47:50 +00:00
|
|
|
},
|
|
|
|
// 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'
|
2019-05-25 12:36:36 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// 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'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'plugins/slimScroll',
|
|
|
|
to : 'docs/assets/plugins/slimScroll'
|
2018-02-03 23:45:19 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
module.exports = Plugins
|