-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
30 lines (26 loc) · 998 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
var elixir = require('laravel-elixir');
/*
|--------------------------------------------------------------------------
| 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 Less
| file for our application, as well as publishing vendor resources.
|
*/
/* elixir(function(mix) {
mix.less('app.less');
});
*/
elixir(function(mix) {
mix.sass('resources/assets/sass/app.scss');
mix.scripts([
'node_modules/js-cookie/src/js.cookie.js',
'node_modules/bootstrap/dist/js/bootstrap.min.js',
// We're using a very slightly modified version of colResizable,
// so have made a copy of the source to the public directory.
'public/js/colResizable-1.6.js',
'node_modules/devbridge-autocomplete/dist/jquery.autocomplete.js'
], 'public/js/vendor.js', './');
});