123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- 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
|