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
|
|
|
|
{
|
|
|
|
from: 'node_modules/font-awesome/css',
|
|
|
|
to : 'plugins/font-awesome/css'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: 'node_modules/font-awesome/fonts',
|
|
|
|
to : 'plugins/font-awesome/fonts'
|
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'
|
2018-02-03 23:45:19 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
module.exports = Plugins
|