From 3222e302eb94f276462e27503b4f1845f17bca36 Mon Sep 17 00:00:00 2001 From: jirehstudios Date: Fri, 21 Oct 2016 11:14:49 -0400 Subject: [PATCH] Added recommended parentheses When using arrow functions, parentheses are recommended if the function takes a single argument and uses curly braces. See section 8.4 of Airbnb's JavaScript style guide, one of the most popular. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 72ff1ebb..c9de6ea3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -13,7 +13,7 @@ require('laravel-elixir-vue-2'); | */ -elixir(mix => { +elixir((mix) => { mix.sass('app.scss') .webpack('app.js'); });