forked from leskhq/Laravel-Enterprise-Starter-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
37 lines (32 loc) · 1.06 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
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.
|
*/
// TODO: Include all other CSS and JS files: JQuery, Bootstrap, Select2, etc...
elixir(function(mix) {
// Compile our SASS file to CSS.
mix.sass('app.scss');
// Combine the various CSS into one.
mix.styles([
//'vendor.css',
'app.css',
], null, 'public/css');
// Compile our Coffee file to JS.
mix.coffee('app.coffee');
// Combine the various JS into one.
mix.scripts([
//'vendor.js',
'ajax-csrf.js',
'modal.js',
'app.js',
], null, 'public/js');
// Enable cache busting versions.
mix.version(['public/css/all.css', 'public/js/all.js']);
});