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.
This commit is contained in:
parent
d22b32f4e8
commit
3222e302eb
|
@ -13,7 +13,7 @@ require('laravel-elixir-vue-2');
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
elixir(mix => {
|
elixir((mix) => {
|
||||||
mix.sass('app.scss')
|
mix.sass('app.scss')
|
||||||
.webpack('app.js');
|
.webpack('app.js');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue