From 1b4cdb4c3c9a9173a2d7ed6a53c906e3591a84d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Lo=CC=88sken?= Date: Fri, 22 Jul 2016 12:36:58 +0200 Subject: [PATCH] Set up basic elixir config --- gulpfile.js | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 7cf626734fa3..32d0c1aae677 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 + */ + + });