2014-10-14 14:37:39 -04:00
|
|
|
var elixir = require('laravel-elixir');
|
2014-10-10 12:51:20 -05:00
|
|
|
|
|
|
|
/*
|
2014-11-29 15:48:27 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Elixir Asset Management
|
|
|
|
|--------------------------------------------------------------------------
|
2014-10-10 12:51:20 -05:00
|
|
|
|
|
2014-11-29 15:48:27 -06:00
|
|
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
|
2015-06-27 14:21:37 +02:00
|
|
|
| for your Laravel application. By default, we are compiling the Sass
|
2014-11-29 15:48:27 -06:00
|
|
|
| file for our application, as well as publishing vendor resources.
|
2014-10-10 12:51:20 -05:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
elixir(function(mix) {
|
2015-06-22 18:24:47 -05:00
|
|
|
mix.sass('app.scss');
|
2014-11-21 15:03:13 -06:00
|
|
|
});
|