Plugins.js 3.3 KB
Newer Older
A
Abdullah Almsaeed 已提交
1 2 3 4
const Plugins = [
  // jQuery
  {
    from: 'node_modules/jquery/dist',
5
    to  : 'plugins/jquery'
A
Abdullah Almsaeed 已提交
6 7 8 9
  },
  // Popper
  {
    from: 'node_modules/popper.js/dist',
10
    to  : 'plugins/popper'
A
Abdullah Almsaeed 已提交
11 12 13
  },
  // Bootstrap
  {
R
REJack 已提交
14 15
    from: 'node_modules/bootstrap/dist/js',
    to  : 'plugins/bootstrap/js'
A
Abdullah Almsaeed 已提交
16 17 18
  },
  // Font Awesome
  {
19 20
    from: 'node_modules/@fortawesome/fontawesome-free/css',
    to  : 'plugins/fontawesome-free/css'
A
Abdullah Almsaeed 已提交
21 22
  },
  {
23 24
    from: 'node_modules/@fortawesome/fontawesome-free/webfonts',
    to  : 'plugins/fontawesome-free/webfonts'
A
Abdullah Almsaeed 已提交
25
  },
R
REJack 已提交
26 27 28 29 30 31 32 33 34 35
  // overlayScrollbars
  {
    from: 'node_modules/overlayscrollbars/js',
    to  : 'plugins/overlayScrollbars/js'
  },
  {
    from: 'node_modules/overlayscrollbars/css',
    to  : 'plugins/overlayScrollbars/css'
  },
  // Chart.js
A
Abdullah Almsaeed 已提交
36 37
  {
    from: 'node_modules/chart.js/dist/',
38 39
    to  : 'plugins/chart.js'
  },
R
REJack 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
  // Summernote
  {
    from: 'node_modules/summernote/dist/',
    to  : 'plugins/summernote'
  },
  // Bootstrap Slider
  {
    from: 'node_modules/bootstrap-slider/dist/',
    to  : 'plugins/bootstrap-slider'
  },
  {
    from: 'node_modules/bootstrap-slider/dist/css',
    to  : 'plugins/bootstrap-slider/css'
  },
  // Bootstrap Colorpicker
  {
    from: 'node_modules/bootstrap-colorpicker/dist/js',
    to  : 'plugins/bootstrap-colorpicker/js'
  },
  {
    from: 'node_modules/bootstrap-colorpicker/dist/css',
    to  : 'plugins/bootstrap-colorpicker/css'
  },
  // Tempusdominus Bootstrap 4
64
  {
R
REJack 已提交
65 66
    from: 'node_modules/tempusdominus-bootstrap-4/build/js',
    to  : 'plugins/tempusdominus-bootstrap-4/js'
A
Abdullah Almsaeed 已提交
67
  },
R
REJack 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  {
    from: 'node_modules/tempusdominus-bootstrap-4/build/css',
    to  : 'plugins/tempusdominus-bootstrap-4/css'
  },
  // Moment
  {
    from: 'node_modules/moment/min',
    to  : 'plugins/moment'
  },
  {
    from: 'node_modules/moment/locale',
    to  : 'plugins/moment/locale'
  },
  // FastClick
  {
    from: 'node_modules/fastclick/lib',
    to  : 'plugins/fastclick'
  },

A
Abdullah Almsaeed 已提交
87 88 89 90 91 92 93 94 95 96 97 98
  // 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'
99
  },
R
REJack 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

  // // 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'
  // }
A
Abdullah Almsaeed 已提交
144 145 146
]

module.exports = Plugins