-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
52 lines (47 loc) · 1.51 KB
/
gulpfile.js
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
const elixir = require('laravel-elixir');
require('laravel-elixir-vue-2');
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your Laravel application. By default, we are compiling the Sass
| file for your application as well as publishing vendor resources.
|
*/
// elixir((mix) => {
// mix.sass('app.scss')
// .webpack('app.js');
// });
elixir((mix) => {
/*
NProgress
*/
mix.scripts([
'./node_modules/nprogress/nprogress.js'
], 'public/nprogress/nprogress.js');
/*
admin
*/
mix.scripts([
'resources/assets/js/admin.js'
], 'public/js/admin.js');
/*
bootstrap
*/
mix.copy('vendor/almasaeed2010/adminlte/bootstrap/css/bootstrap.min.css',
'public/bootstrap/css/bootstrap.min.css');
mix.copy('vendor/almasaeed2010/adminlte/bootstrap/js/bootstrap.min.js',
'public/bootstrap/js/bootstrap.min.js');
/*
css/js
*/
mix.copy('vendor/almasaeed2010/adminlte/dist/css', 'public/adminlte/css');
mix.copy('vendor/almasaeed2010/adminlte/dist/js/app.min.js', 'public/adminlte/js');
/*
jquery for compatibility
*/
mix.copy('vendor/almasaeed2010/adminlte/plugins/jQuery/jquery-2.2.3.min.js',
'public/adminlte/jQuery/jquery-2.2.3.min.js');
});