diff --git a/gulpfile.js b/gulpfile.js index 7cf626734f..32d0c1aae6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,16 +1,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. - | +/** + * Set Elixir Source Maps + * + * @type {boolean} */ +elixir.config.sourcemaps = true; + +/** + * Directory for bower source files. + * If changing this, please also see .bowerrc + * + * @type {string} + */ +var bowerDir = 'public/vendor'; elixir(function(mix) { - mix.less('app.less'); + + /** + * CSS configuration + */ + + + /** + * JS configuration + */ + + });