Plugins.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. const Plugins = [
  2. // jQuery
  3. {
  4. from: 'node_modules/jquery/dist',
  5. to : 'plugins/jquery'
  6. },
  7. // Popper
  8. {
  9. from: 'node_modules/popper.js/dist',
  10. to : 'plugins/popper'
  11. },
  12. // Bootstrap
  13. {
  14. from: 'node_modules/bootstrap/dist',
  15. to : 'plugins/bootstrap'
  16. },
  17. // Font Awesome
  18. {
  19. from: 'node_modules/@fortawesome/fontawesome-free/css',
  20. to : 'plugins/fontawesome-free/css'
  21. },
  22. {
  23. from: 'node_modules/@fortawesome/fontawesome-free/webfonts',
  24. to : 'plugins/fontawesome-free/webfonts'
  25. },
  26. // Chart.js 2
  27. {
  28. from: 'node_modules/chart.js/dist/',
  29. to : 'plugins/chart.js'
  30. },
  31. // CKEditor
  32. {
  33. from: 'node_modules/@ckeditor/ckeditor5-build-classic/build/',
  34. to : 'plugins/ckeditor'
  35. },
  36. // DataTables
  37. {
  38. from: 'node_modules/datatables.net/js',
  39. to: 'plugins/datatables'
  40. },
  41. {
  42. from: 'node_modules/datatables.net-bs4/js',
  43. to: 'plugins/datatables'
  44. },
  45. {
  46. from: 'node_modules/datatables.net-bs4/css',
  47. to: 'plugins/datatables'
  48. },
  49. // overlayScrollbars
  50. {
  51. from: 'node_modules/overlayscrollbars/js',
  52. to : 'plugins/overlayScrollbars/js'
  53. },
  54. {
  55. from: 'node_modules/overlayscrollbars/css',
  56. to : 'plugins/overlayScrollbars/css'
  57. },
  58. // // Doc Assets
  59. // // AdminLTE Dist
  60. // {
  61. // from: 'dist/css',
  62. // to : 'docs/assets/css'
  63. // },
  64. // {
  65. // from: 'dist/js',
  66. // to : 'docs/assets/js'
  67. // },
  68. // // jQuery
  69. // {
  70. // from: 'node_modules/jquery/dist',
  71. // to : 'docs/assets/plugins/jquery'
  72. // },
  73. // // Popper
  74. // {
  75. // from: 'node_modules/popper.js/dist',
  76. // to : 'docs/assets/plugins/popper'
  77. // },
  78. // // Bootstrap
  79. // {
  80. // from: 'node_modules/bootstrap/dist/js',
  81. // to : 'docs/assets/plugins/bootstrap/js'
  82. // },
  83. // // Font Awesome
  84. // {
  85. // from: 'node_modules/@fortawesome/fontawesome-free/css',
  86. // to : 'docs/assets/plugins/fontawesome-free/css'
  87. // },
  88. // {
  89. // from: 'node_modules/@fortawesome/fontawesome-free/webfonts',
  90. // to : 'docs/assets/plugins/fontawesome-free/webfonts'
  91. // },
  92. // // overlayScrollbars
  93. // {
  94. // from: 'plugins/overlayScrollbars/js',
  95. // to : 'docs/assets/plugins/overlayScrollbars/js'
  96. // },
  97. // {
  98. // from: 'plugins/overlayScrollbars/css',
  99. // to : 'docs/assets/plugins/overlayScrollbars/css'
  100. // }
  101. ]
  102. module.exports = Plugins