Browse Source

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.
jirehstudios 7 years ago
parent
commit
3222e302eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

@@ -13,7 +13,7 @@ require('laravel-elixir-vue-2');
  |
  */
 
-elixir(mix => {
+elixir((mix) => {
     mix.sass('app.scss')
        .webpack('app.js');
 });