This repository was archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
65 lines (58 loc) · 1.62 KB
/
gulpfile.js
File metadata and controls
65 lines (58 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
var elixir = require('laravel-elixir');
elixir(function(mix) {
mix.sass(['app.scss', 'style.scss'], 'resources/assets/css');
mix.styles([
'bootstrap.min.css',
'magnific-popup.css',
'app.css',
'style.css'
]);
mix.scripts([
'jquery.min.js',
'bootstrap.min.js',
'jquery.magnific-popup.js',
'jquery.mixitup.min.js'
]);
//admin login/registration page assets:
mix.styles([
'bootstrap/css/bootstrap.min.css',
'css/login.css',
'dist/css/AdminLTE.min.css',
'plugins/iCheck/square/blue.css'
],
'public/css/login.css',
'resources/assets/AdminLTE');
mix.scripts([
'plugins/jQuery/jQuery-2.1.4.min.js',
'bootstrap/js/bootstrap.min.js',
'plugins/iCheck/icheck.min.js',
'js/login.js'
],
'public/js/login.js',
'resources/assets/AdminLTE');
//admin panel's assets
mix.styles([
'bootstrap/css/bootstrap.min.css',
'dist/css/AdminLTE.min.css',
'dist/css/skins/skin-green.min.css',
'css/sweetalert.css',
'css/app.css',
'css/dataTables.bootstrap.min.css',
],
'public/AdminLTE',
'resources/assets/AdminLTE');
mix.scripts([
'plugins/jQuery/jQuery-2.1.4.min.js',
'bootstrap/js/bootstrap.min.js',
'dist/js/app.min.js',
'js/sweetalert.min.js',
'js/delete-file.js',
'js/delete-image.js',
'js/grid.js',
'js/jquery.dataTables.min.js',
'js/dataTables.bootstrap.min.js',
'js/app.js'
],
'public/AdminLTE',
'resources/assets/AdminLTE');
});