-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
executable file
·32 lines (28 loc) · 981 Bytes
/
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
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(function (mix) {
//// mix.scripts(['app.js', 'controllers.js'], 'public/js/app.js')
//// mix.scriptsIn('public/js/mix');
//
//});
elixir(function (mix) {
mix.scripts([
'./public/js/mix/jquery.min.js',
'./public/js/mix/bootstrap.min.js',
'./public/js/mix/list.min.js',
'./public/js/mix/bootstrap-typeahead.min.js',
'./public/js/mix/blazy.min.js',
'./public/js/mix/confirm.min.js'
],
'public/js/all.js');
});