Files
AdminLTE/build/npm/Plugins.js
REJack 42568b9b8d Road to v3.0.0-beta.1
- replaced slimScroll to overlayScrollbars
- added new layout types (fixed, navbar-fixed & footer-fixed)
- changed old default layout from "fixed" to non-fixed
- enhanced PushMenu.js to load options via data
- enhanced Layout.js new layout calcs, options via data for scrollbar
- fixed forms fontawesome icons
- added warning-feedback (without icon)
- added sidebar-mini-md
- updated index to use layout-fixed
- updated index2 to use layout-fixed, layout-navbar-fixed & layout-footer-fixed
2019-06-05 13:34:15 +02:00

105 lines
2.3 KiB
JavaScript

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',
to : 'plugins/bootstrap'
},
// 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'
},
// Chart.js 2
{
from: 'node_modules/chart.js/dist/',
to : 'plugins/chart.js'
},
// CKEditor
{
from: 'node_modules/@ckeditor/ckeditor5-build-classic/build/',
to : 'plugins/ckeditor'
},
// 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'
},
// overlayScrollbars
{
from: 'node_modules/overlayscrollbars/js',
to : 'plugins/overlayScrollbars/js'
},
{
from: 'node_modules/overlayscrollbars/css',
to : 'plugins/overlayScrollbars/css'
},
// // 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