Plugins.js 1.8 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 14
  },
  // Bootstrap
  {
    from: 'node_modules/bootstrap/dist',
15
    to  : 'plugins/bootstrap'
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 26 27 28
  },
  // Chart.js 2
  {
    from: 'node_modules/chart.js/dist/',
29 30 31 32
    to  : 'plugins/chart.js'
  },
  // CKEditor
  {
A
Abdullah Almsaeed 已提交
33
    from: 'node_modules/@ckeditor/ckeditor5-build-classic/build/',
34
    to  : 'plugins/ckeditor'
A
Abdullah Almsaeed 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47
  },
  // 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'
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  },

  // 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'
  },
  {
    from: 'plugins/slimScroll',
    to  : 'docs/assets/plugins/slimScroll'
A
Abdullah Almsaeed 已提交
87 88 89 90
  }
]

module.exports = Plugins