-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
44 lines (38 loc) · 1.28 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
var elixir = require('laravel-elixir');
require('laravel-elixir-vueify');
/*
|--------------------------------------------------------------------------
| 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 our application, as well as publishing vendor resources.
|
*/
elixir(function (mix) {
mix.sass('app.scss', 'public/assets/css/app.css');
mix.browserify([
'app.js'
], 'resources/assets/js/builds/app.js')
.browserify([
'admin.js'
], 'resources/assets/js/builds/admin.js');
mix.scripts([
'plugins/jquery.min.js',
'plugins/classie.js',
'plugins/bootstrap.min.js',
'plugins/pace.min.js',
'plugins/uiMorphingButton_fixed.js',
'plugins/toastr.min.js',
'plugins/sweetalert.min.js',
'plugins/select2.min.js',
'plugins/dropzone.min.js',
'builds/app.js'
], 'public/assets/js/app.js');
mix.scripts([
'plugins/summernote.min.js',
'plugins/summernote-zh-CN.min.js',
'builds/admin.js'
], 'public/assets/js/admin.js');
});