Commit 3222e302 authored by jirehstudios's avatar jirehstudios Committed by GitHub

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.
parent d22b32f4
......@@ -13,7 +13,7 @@ require('laravel-elixir-vue-2');
|
*/
elixir(mix => {
elixir((mix) => {
mix.sass('app.scss')
.webpack('app.js');
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment